-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(libs+user-notification): Contentful graphql client library plus …
…user notification implementation (#14901) * basic setup * chore: nx format:write update dirty files * eslintrc * chore: nx format:write update dirty files * remix * chore: nx format:write update dirty files * update readme edits * update readme edits * chore: nx format:write update dirty files * cleanup setup * chore: nx format:write update dirty files * rename files * rename files * working demo * implementing lib * consolidate queries refactor * consolidate queries refactor * cleanup * cleanup queries * enhancedfetch redis cache setup * chore: charts update dirty files * charts * redis working * redis cache tweaks * redis cache tweaks * graphql generated * user notification gql * user notification gql setup works * tidy up * update tests * codegen cleanup * cache works * cleanup * cleanup * implicitDependencies * updated readme * disable codegen in CI * disable codegen in CI * disable codegen in CI * rename lib * rename lib * GetOrganizationByNationalId * nationalId: senderId * cleanStringAdvanced * rename lib to cms * rename lib to cms * fetch schema command * fetch schema command * fetch schema command * chore: nx format:write update dirty files * fix lint error * cleanup --------- Co-authored-by: andes-it <[email protected]> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
- Loading branch information
1 parent
579ee9f
commit 17a146e
Showing
33 changed files
with
27,752 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ const getEnv = (services: { | |
staging: '[email protected]', | ||
prod: '[email protected]', | ||
}, | ||
REDIS_USE_SSL: 'true', | ||
}) | ||
|
||
export const userNotificationServiceSetup = (services: { | ||
|
@@ -57,6 +58,7 @@ export const userNotificationServiceSetup = (services: { | |
.db() | ||
.command('node') | ||
.args('--no-experimental-fetch', 'main.js') | ||
.redis() | ||
.env(getEnv(services)) | ||
.secrets({ | ||
FIREBASE_CREDENTIALS: `/k8s/${serviceName}/firestore-credentials`, | ||
|
@@ -121,6 +123,7 @@ export const userNotificationWorkerSetup = (services: { | |
.args('--no-experimental-fetch', 'main.js', '--job=worker') | ||
.db() | ||
.migrations() | ||
.redis() | ||
.env({ | ||
...getEnv(services), | ||
EMAIL_REGION: 'eu-west-1', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.