From 9194e3099e8d16263ea9b446fc43570d80262cde Mon Sep 17 00:00:00 2001 From: Connor Boyle Date: Mon, 7 Jun 2021 19:39:45 -0700 Subject: [PATCH] Update Dev Run Instructions (#96) * Add Line Explaining to Install Dev Environment * Don't Limit Docker Stack to Deidentifier Backend It's easier to just use the whole stack * Update README.md Co-authored-by: Thomas Schaffter --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d9957c7..ec2dfde 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ the de-identifier server being run in the background. Assuming that Node and Doc commands can start up the full stack (back end & front end) for development/testing purposes using the following commands: ```bash -$ docker-compose up --build phi-deidentifier +$ docker compose up --build ``` (you may have to run this command as root or prepend the command with `sudo`). @@ -47,6 +47,7 @@ Then, in another shell, run the following: ```bash $ cd client/ +$ npm ci $ SERVER_PORT=80 npm start ```