From b55efe08998cb4e059b3f449e6a07f16697fbcbf Mon Sep 17 00:00:00 2001 From: Brian Choromanski Date: Tue, 22 Jan 2019 13:03:09 -0500 Subject: [PATCH] Added Resources section and script to run the app --- README.md | 4 ++++ run.sh | 10 ++++++++++ 2 files changed, 14 insertions(+) create mode 100755 run.sh diff --git a/README.md b/README.md index 2f4a00b..0644cf4 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,7 @@ - rename project - set up project managment - rename github project and make it public + +## Resources + - [Gitflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow) + - [How to setup Flask on Heroku (I can do all of this)](https://gist.github.com/mayukh18/2223bc8fc152631205abd7cbf1efdd41/) diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..f211e26 --- /dev/null +++ b/run.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ ! -d ../venv ]; then + echo "Cloning virtual environment" + git clone https://github.com/Choromanski/venv.git ../venv +fi + +source ../venv/bin/activate + +flask run \ No newline at end of file