From a5acff4cee9fb778aa6d998ac0b4b1918f5d69ff Mon Sep 17 00:00:00 2001 From: rjohanek Date: Thu, 9 Jan 2025 13:38:25 -0500 Subject: [PATCH] update documentation, rm pgcrypto extension --- docs/jade-getting-started.md | 2 +- scripts/init-db/postgres-init.sql | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/jade-getting-started.md b/docs/jade-getting-started.md index 8167fda571..27685097c6 100644 --- a/docs/jade-getting-started.md +++ b/docs/jade-getting-started.md @@ -254,7 +254,7 @@ export HOST=localhost * Ensure docker is running * Auth as your broadinstitute.org to pull from Google Secrets Manager `gcloud auth login @broadinstitute.org` * Run `./scripts/run-db start` to start the DB in a docker container -* Run `./scripts/run local` to run TDR locally or `./scripts/run docker` to run TDR in a docker container +* Run `./scripts/run start_local` to run TDR locally or `./scripts/run start_docker` to run TDR in a docker container * To Build the code and run the unit tests: ``` diff --git a/scripts/init-db/postgres-init.sql b/scripts/init-db/postgres-init.sql index 63c7eda9d9..8723c3604e 100644 --- a/scripts/init-db/postgres-init.sql +++ b/scripts/init-db/postgres-init.sql @@ -6,5 +6,3 @@ ALTER DATABASE datarepo OWNER to drmanager; CREATE DATABASE stairway; GRANT ALL PRIVILEGES ON DATABASE stairway to drmanager; ALTER DATABASE stairway OWNER to drmanager; -\c datarepo -CREATE EXTENSION IF NOT EXISTS pgcrypto;