From a43fb7429a17c49e70b19134b6e3f78d90b3aec3 Mon Sep 17 00:00:00 2001 From: pmoharana-cmd Date: Fri, 27 Sep 2024 19:43:00 -0400 Subject: [PATCH] Add start script --- README.md | 11 ++++------- start.sh | 3 +++ 2 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 start.sh diff --git a/README.md b/README.md index 932d45d..463741d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ \script // Scripts for init and demo \services // Main business logic \test // Testing suite - + \compass \components // Components organized in folders related to specific pages \pages // Store all pages here @@ -73,13 +73,10 @@ NEXT_PUBLIC_HOST=http://localhost:3000 ### In Dev Container Setup -Open a new terminal and run these commands in sequence to setup the dependencies and database -``` -cd backend -python3 -m backend.script.reset_demo +Open a new terminal and run this script in sequence to setup the dependencies and database -cd ../compass -npm ci +``` +./start.sh ``` ## Starting up website and backend diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..af85082 --- /dev/null +++ b/start.sh @@ -0,0 +1,3 @@ +python3 -m backend.script.reset_demo +cd compass +npm ci \ No newline at end of file