-
Notifications
You must be signed in to change notification settings - Fork 2
[PROD RELEASE] - Profile app & fixes #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f285806
805eb18
2b2f323
b23970f
e630b50
822f2c9
40c1bf8
dc2df6d
b6888fb
e9bdb77
2b01dc9
5248b11
db61536
ce5300c
dd83bff
1d807b3
0b1d9ac
5047ead
7edcc32
9bfa362
1087a97
7ca487e
048a4c2
d280595
bd8aa1c
81bd0cd
bdebf26
1ce6ef9
bba3021
27a5136
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,6 +21,7 @@ module.exports = { | |
| AUTH_SECRET: process.env.AUTH_SECRET || 'mysecret', | ||
| VALID_ISSUERS: process.env.VALID_ISSUERS || '["https://api.topcoder-dev.com", "https://api.topcoder.com", "https://topcoder-dev.auth0.com/", "https://auth.topcoder-dev.com/"]', | ||
| IDENTITY_DB_URL: process.env.IDENTITY_DB_URL, | ||
| CHALLENGE_DB_URL: process.env.CHALLENGE_DB_URL, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [❗❗ |
||
| RESOURCES_DB_URL: process.env.RESOURCES_DB_URL, | ||
| VANILLA_DB_URL: process.env.VANILLA_DB_URL, | ||
|
|
||
|
|
@@ -119,6 +120,8 @@ module.exports = { | |
| STATISTICS_SECURE_FIELDS: process.env.STATISTICS_SECURE_FIELDS | ||
| ? process.env.STATISTICS_SECURE_FIELDS.split(',') | ||
| : ['createdBy', 'updatedBy'], | ||
| // Select stats read source: 'unified' (new tables) or 'legacy' (pre-refactor tables) | ||
| STATS_READ_SOURCE: process.env.STATS_READ_SOURCE || 'unified', | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
|
|
||
| // Public group id | ||
| PUBLIC_GROUP_ID: process.env.PUBLIC_GROUP_ID || '10', | ||
|
|
@@ -146,6 +149,7 @@ module.exports = { | |
|
|
||
| // Finance database connection string | ||
| FINANCE_DATABASE_URL: process.env.FINANCE_DATABASE_URL, | ||
| SENDGRID_API_KEY: process.env.SENDGRID_API_KEY, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [❗❗ |
||
|
|
||
| HUBSPOT_API_KEY: process.env.HUBSPOT_API_KEY, | ||
| HUBSPOT_BASE_URL: process.env.HUBSPOT_BASE_URL, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[⚠️
maintainability]Adding specific feature branches like
PM-3893andpm-3847_1to the build filters can be useful for testing, but ensure these branches are temporary and removed once the feature is merged to avoid clutter and potential confusion in the workflow configuration.