From d2d7ea4ca966e6ca0b722829bbd5a6adefcf86e9 Mon Sep 17 00:00:00 2001 From: jwu-fisker Date: Fri, 8 Jan 2021 16:06:50 -0800 Subject: [PATCH] Add run.sh to run setup and run web app --- .gitignore | 1 + run.sh | 5 +++++ 2 files changed, 6 insertions(+) create mode 100755 run.sh diff --git a/.gitignore b/.gitignore index 00ec607..947c7e5 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ # misc .DS_Store +.env .env.local .env.development.local .env.test.local diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..57126af --- /dev/null +++ b/run.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +npm install +cp .env.template .env +npm start \ No newline at end of file