Skip to content

Commit 192e0ad

Browse files
author
Parth Shah
committed
adding auth domain to config and upgrading tc-core lib
1 parent d36ce9c commit 192e0ad

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

config/default.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"authSecret": "secret",
3+
"authDomain": "topcoder-dev.com",
34
"logLevel": "info",
45
"version": "v4",
56
"captureLogs": "false",

config/development.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"authDomain": "topcoder-dev.com",
23
"pubsubQueueName": "dev.project.service",
34
"pubsubExchangeName": "dev.projects",
45
"attachmentsS3Bucket": "topcoder-dev-media"

config/production.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"authDomain": "topcoder.com"
3+
}

config/sample.local.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ if (process.env.NODE_ENV === 'test') {
66
} else {
77
config = {
88
authSecret: 'secret',
9+
authDomain: 'topcoder-dev.com',
910
logLevel: 'debug',
1011
captureLogs: 'false',
1112
logentriesToken: '',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"pg": "^4.5.5",
5252
"pg-native": "^1.10.0",
5353
"sequelize": "^3.23.0",
54-
"tc-core-library-js": "^1.0.8",
54+
"tc-core-library-js": "^1.0.9",
5555
"urlencode": "^1.1.0"
5656
},
5757
"devDependencies": {

0 commit comments

Comments
 (0)