Simple events app made with Flask in Python
https://flask-events.herokuapp.com
Name | Version |
---|---|
Python | 3.5.2 |
Flask | 0.12.2 |
Sqlite (development) | 3.11.0 |
PostgreSQL (production) | 9.5.7 |
- clone repository,
- install virtualenv,
cd path/to/repo
,virtualenv venv -p /usr/bin/python3.5
,. venv/bin/activate
,pip install flask
,python main.py
- in your favourite web browser
localhost:5000
If you prefer to enter flask run
instead of python main.py
then:
export FLASK_APP=main.py
If you want to restart server automatically after every change: export FLASK_DEBUG=1
To exit virtualenv: deactivate