Skip to content

Commit 8f673f5

Browse files
committed
Updates GitHub repository location
1 parent 96cce10 commit 8f673f5

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const myApiInstance = new MyApi();
5959

6060
const firstNumber = myApiInstance.add(5, 3);
6161
const secondNumber = myApiInstance.multiply(5, 3);
62-
const customMethod = myApiInstance.customMethod("sample-custom-stack");
62+
const customMethod = myApiInstance.customMethod("tutorial-custom-stack");
6363
const greetingMessage = MyApi.greet();
6464

6565
const data = {

apis/src/main/resources/META-INF/dirigible/custom-api/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"repository": {
44
"type": "git",
55
"branch": "master",
6-
"url": "https://github.com/dirigiblelabs/sample-custom-stack.git"
6+
"url": "https://github.com/dirigiblelabs/tutorial-custom-stack.git"
77
},
88
"actions": [
99
{

application/src/main/resources/dirigible.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
DIRIGIBLE_PRODUCT_NAME=${project.title}
33
DIRIGIBLE_PRODUCT_VERSION=${project.version}
44
DIRIGIBLE_PRODUCT_COMMIT_ID=${git.commit.id}
5-
DIRIGIBLE_PRODUCT_REPOSITORY=https://github.com/dirigiblelabs/sample-custom-stack
5+
DIRIGIBLE_PRODUCT_REPOSITORY=https://github.com/dirigiblelabs/tutorial-custom-stack
66
DIRIGIBLE_PRODUCT_TYPE=all
77
DIRIGIBLE_INSTANCE_NAME=custom-stack
88
DIRIGIBLE_DATABASE_PROVIDER=local

branding/src/main/resources/META-INF/dirigible/ide-branding/branding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const brandingInfo = {
22
name: 'Custom Stack',
33
brand: 'Custom Stack',
4-
brandUrl: 'https://github.com/dirigiblelabs/sample-custom-stack',
4+
brandUrl: 'https://github.com/dirigiblelabs/tutorial-custom-stack',
55
icons: {
66
faviconIco: '/services/web/ide-branding/favicon-16x16.png',
77
favicon32: '/services/web/ide-branding/favicon-32x32.png',

branding/src/main/resources/META-INF/dirigible/ide-branding/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"repository": {
44
"type": "git",
55
"branch": "master",
6-
"url": "https://github.com/dirigiblelabs/sample-custom-stack.git"
6+
"url": "https://github.com/dirigiblelabs/tutorial-custom-stack.git"
77
}
88
}

demo-application/demo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const myApiInstance = new MyApi();
55

66
const firstNumber = myApiInstance.add(5, 3);
77
const secondNumber = myApiInstance.multiply(5, 3);
8-
const customMethod = myApiInstance.customMethod("sample-custom-stack");
8+
const customMethod = myApiInstance.customMethod("tutorial-custom-stack");
99
const greetingMessage = MyApi.greet();
1010

1111
const data = {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<url>https://www.eclipse.org</url>
2424
</organization>
2525
<scm>
26-
<url>https://github.com/dirigiblelabs/sample-custom-stack</url>
26+
<url>https://github.com/dirigiblelabs/tutorial-custom-stack</url>
2727
</scm>
2828

2929
<modules>

0 commit comments

Comments
 (0)