Skip to content
This repository was archived by the owner on Dec 12, 2022. It is now read-only.

Commit a3e416f

Browse files
Change services names
We need to change the names of our cloud services in the config files to be consistent with our server and jenkins.
1 parent a63d238 commit a3e416f

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

lib/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ export const PROVISION_TYPES = {
1919
DEVELOPMENT: "Development",
2020
};
2121

22-
export const AUTH_SERVICE_NAME = "auth";
23-
export const BUILD_SERVICE_NAME = "build";
24-
export const EMULATORS_SERVICE_NAME = "emulators";
22+
export const AUTH_SERVICE_NAME = "auth-service";
23+
export const BUILD_SERVICE_NAME = "build-service";
24+
export const EMULATORS_SERVICE_NAME = "emulators-service";
2525

2626
export const CLOUD_BUILD_EVENT_NAMES = {
2727
BUILD_OUTPUT: "buildOutput"

server-configs/config-dev.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"stage": "dev",
33
"cloudServices": {
4-
"auth": {
4+
"auth-service": {
55
"subdomain": "dev-authentication"
66
},
7-
"build": {
7+
"build-service": {
88
"subdomain": "dev-build"
99
},
10-
"emulators": {
10+
"emulators-service": {
1111
"subdomain": "dev-emulators"
1212
}
1313
}

server-configs/config-local.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"apiVersion": null,
33
"serverProto": "http",
44
"cloudServices": {
5-
"auth": {
5+
"auth-service": {
66
"fullHostName": "localhost:8000"
77
},
8-
"build": {
8+
"build-service": {
99
"fullHostName": "localhost:8001"
1010
},
11-
"emulators": {
11+
"emulators-service": {
1212
"fullHostName": "localhost:8002"
1313
}
1414
}

server-configs/config-production.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"stage": "production",
33
"cloudServices": {
4-
"auth": {
4+
"auth-service": {
55
"subdomain": "authentication"
66
},
7-
"build": {
7+
"build-service": {
88
"subdomain": "build"
99
},
10-
"emulators": {
10+
"emulators-service": {
1111
"subdomain": "emulators"
1212
}
1313
}

server-configs/config-test.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"stage": "test",
33
"cloudServices": {
4-
"auth": {
4+
"auth-service": {
55
"subdomain": "test-authentication"
66
},
7-
"build": {
7+
"build-service": {
88
"subdomain": "test-build"
99
},
10-
"emulators": {
10+
"emulators-service": {
1111
"subdomain": "test-emulators"
1212
}
1313
}

server-configs/config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"serverProto": "https",
55
"stage": "production",
66
"cloudServices": {
7-
"auth": {
7+
"auth-service": {
88
"subdomain": "authentication"
99
},
10-
"build": {
10+
"build-service": {
1111
"subdomain": "build"
1212
},
13-
"emulators": {
13+
"emulators-service": {
1414
"subdomain": "emulators"
1515
}
1616
}

0 commit comments

Comments
 (0)