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