Skip to content

Commit

Permalink
Remove gamma mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
andrablaj committed Feb 22, 2024
1 parent 7fb2c7c commit d1df1ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"scripts": {
"prod": "ts-node ./scripts/index.ts init -s -e prod",
"local": "ts-node ./scripts/index.ts init -s -e local",
"gamma": "ts-node ./scripts/index.ts init -s -e gamma",
"test": "jest"
},
"keywords": [],
Expand Down
10 changes: 2 additions & 8 deletions scripts/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,8 @@ export const COMMANDS: Record<string, any> = {
};

export const ENV_COMMANDS: Record<string, any> = {
gamma:
"COUCHDB_HOST=adp-sandbox.dev.medicmobile.org COUCHDB_DB=medic COUCHDB_USER=medic \
docker-compose -f docker-compose.couchdb.yml -f docker-compose.postgres.yml -f docker-compose.yml \
up -d logstash postgres postgrest dbt",
prod:
"docker-compose -f docker-compose.couchdb.yml -f docker-compose.postgrest.yml -f docker-compose.yml \
prod: "docker-compose -f docker-compose.couchdb.yml -f docker-compose.postgrest.yml -f docker-compose.yml \
up -d logstash postgrest dbt",
local:
"docker-compose -f docker-compose.couchdb.yml -f docker-compose.postgres.yml \
local: "docker-compose -f docker-compose.couchdb.yml -f docker-compose.postgres.yml \
-f docker-compose.yml up -d",
};
2 changes: 1 addition & 1 deletion scripts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ program
)
.option(
"-e, --environment [environment]",
"build environments 'local', 'prod', 'gamma'",
"build environments 'local', 'prod'",
"local"
)
.option("-f, --force", "overwrites existing configurations", false)
Expand Down

0 comments on commit d1df1ff

Please sign in to comment.