From 4e674b993efac8b38e5dcfaa94d5c19a9fe24903 Mon Sep 17 00:00:00 2001 From: Daniel Grams Date: Sun, 27 Sep 2020 09:57:27 +0200 Subject: [PATCH] Remove runlocal.sh with exposed API Key --- .gitignore | 1 + README.md | 7 +++++++ runlocal.sh | 4 ---- 3 files changed, 8 insertions(+), 4 deletions(-) delete mode 100755 runlocal.sh diff --git a/.gitignore b/.gitignore index b69d282..87a0a85 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ __pycache__/ *$py.class .env +runlocal.sh tmp/ # C extensions diff --git a/README.md b/README.md index 35679df..4c688ad 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,13 @@ OAUTHLIB_RELAX_TOKEN_SCOPE=true GOOGLE_MAPS_API_KEY= ``` +### Install and run + +``` +pip install -r requirements.txt +flask run --host 0.0.0.0 +``` + ## Development ### Database diff --git a/runlocal.sh b/runlocal.sh deleted file mode 100755 index 2420e4e..0000000 --- a/runlocal.sh +++ /dev/null @@ -1,4 +0,0 @@ -export DATABASE_URL="postgresql://daniel@localhost/gsevpt" -export GOOGLE_MAPS_API_KEY="***REMOVED***" -#pip install -r requirements.txt -flask run --host 0.0.0.0 \ No newline at end of file