Cal State Fullerton - ACM-W Website a new, smaller version written in Flask to run the development server clone the repo: $ git clone https://github.com/higgottluke/ACMW-refresh.git cd into 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.py or $ set FLASK_APP=app.py optionally, turn on flask's debug mode: $ export FLASK_DEBUG=1 or $ set FLASK_DEBUG=1 run the development server: $ flask run