Skip to content

Commit

Permalink
0.0.472
Browse files Browse the repository at this point in the history
  • Loading branch information
ivansglazunov committed Sep 9, 2024
1 parent ae27ca0 commit 7b94f99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions call.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@ const optionDefinitions = [
{ name: 'config', alias: 'c', type: String },
{ name: 'exec', alias: 'e', type: Boolean },
{ name: 'run', alias: 'r', type: Boolean },
{ name: 'stop', alias: 's', type: Boolean },
{ name: 'bash', type: String },

{ name: 'last', alias: 'l', type: Boolean }, // restore
{ name: 'migrate', alias: 'm', type: Boolean }, // migrate

{ name: 'generate', alias: 'g', type: Boolean },
{ name: 'deeplinks', type: String },
Expand Down Expand Up @@ -95,6 +97,7 @@ if (options.generate) {
'DEEP_HASURA_GRAPHQL_LOG_LEVEL': 'error',
"POSTGRES_MIGRATIONS_SOURCE": `postgres://postgres:${postgresKey}@deep-postgres:5432/postgres?sslmode=disable`,
"RESTORE_VOLUME_FROM_SNAPSHOT": options.last || isGitpod ? '1': '0',
"MANUAL_MIGRATIONS": options.migrate ? '1': '0',
"MANUAL_MIGRATIONS": "1",
"MINIO_ROOT_USER": minioAccess,
"MINIO_ROOT_PASSWORD": minioSecret,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@deep-foundation/deeplinks",
"version": "0.0.471",
"version": "0.0.472",
"license": "Unlicense",
"type": "module",
"scripts": {
Expand Down

0 comments on commit 7b94f99

Please sign in to comment.