Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 532 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 532 Bytes

Clean Flask Virtualenv

A good starting point for flask projects with virtualenv.

To get started:

  • create a new repository git init foo
  • cd foo
  • git 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 flask
  • source flask/bin/activate
  • Add other dependencies to requirements.txt and replace the LICENSE file if necessary
  • pip install -r requirements.txt

Don't forget to deactivate the virtualenv when you are done.