Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 589 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 589 Bytes

perma-status

This is a Flask application and associated code for generating the site status.perma.cc.

For development, use Poetry. After any changes to poetry.lock, export requirements for use in deployment:

poetry export -o requirements.txt

In deployment, set up a virtual environment, install requirements, and generate the index template with

python index.py > templates/_index.html && mv templates/_index.html templates/index.html

Run the Flask application:

env FLASK_APP=monitor.py flask run