-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Created a new ddn run script that invokes the jwt gen tool from the command line. Docs are in the readme of the jwt scripts folder. * Rectifies automatic provisioning of AWS servers by opening port 8788 and sending the right gql url to each server for the restified plugin to talk back * refines .gitignore --------- Co-authored-by: Jesse Martin <[email protected]> Co-authored-by: Adam Malone <[email protected]>
- Loading branch information
1 parent
67c7de8
commit d888a06
Showing
8 changed files
with
62 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Node.js | ||
node_modules/ | ||
npm-debug.log | ||
yarn-error.log | ||
package-lock.json | ||
yarn.lock | ||
.npm | ||
.eslintcache | ||
.node_repl_history | ||
.yarn-integrity | ||
|
||
# OS generated files | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Logs and databases | ||
*.log | ||
*.sql | ||
*.sqlite | ||
|
||
# Build output | ||
/dist/ | ||
/tmp/ | ||
/out/ | ||
|
||
# Environment | ||
.env | ||
.env.* |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
engine/build | ||
/engine/build | ||
/.env* | ||
/.data/.env* | ||
node_modules | ||
./compose.yaml | ||
/compose.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
{% for key, value in env_vars.items() %} | ||
{{ key }}={{ value | quote if value | regex_search('[:#= ]') else value }} | ||
{% endfor %} | ||
CONTAINER_PREFIX={{ env_vars.CONTAINER_PREFIX }} | ||
MONGO_PASSWORD={{ env_vars.MONGO_PASSWORD }} | ||
POSTGRES_PASSWORD={{ env_vars.POSTGRES_PASSWORD }} | ||
CLICKHOUSE_PASSWORD={{ env_vars.CLICKHOUSE_PASSWORD }} | ||
CACHING_PLUGIN_SECRET={{ env_vars.CACHING_PLUGIN_SECRET }} | ||
CACHING_PLUGIN_REDIS_URL={{ env_vars.CACHING_PLUGIN_REDIS_URL }} | ||
RESTIFIED_PLUGIN_SECRET={{ env_vars.RESTIFIED_PLUGIN_SECRET }} | ||
RESTIFIED_GRAPHQL_SERVER_URL={{ restified_graphql_server_url }} |
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