diff --git a/call.mjs b/call.mjs index 65535be2..c1189123 100755 --- a/call.mjs +++ b/call.mjs @@ -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 }, @@ -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, diff --git a/package.json b/package.json index 4387bdab..92a6180d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@deep-foundation/deeplinks", - "version": "0.0.471", + "version": "0.0.472", "license": "Unlicense", "type": "module", "scripts": {