A good starting point for flask projects with virtualenv.
To get started:
- create a new repository
git init foo cd foogit pull [email protected]:asam-hack24/flask-clean-start.git- install python 3.5 and pip if not already installed
virtualenv -p /usr/bin/python3.5 flasksource flask/bin/activate- Add other dependencies to
requirements.txtand replace theLICENSEfile if necessary pip install -r requirements.txt
Don't forget to deactivate the virtualenv when you are done.