- clone the repo:
$ git clone https://github.com/higgottluke/ACMW-refresh.git cdinto the new directory:$ cd ACMW-refresh- install flask and other requirements:
$ pip install -r requirements.txt
- if you want, you can do this inside of a virtualenv
- tell flask where to find the app:
$ export FLASK_APP=app.pyor$ set FLASK_APP=app.py - optionally, turn on flask's debug mode:
$ export FLASK_DEBUG=1or$ set FLASK_DEBUG=1 - run the development server:
$ flask run