Go to file
clerie ad0351e9ab Add default api base 2021-05-15 14:45:52 +02:00
uptimestatus Add default api base 2021-05-15 14:45:52 +02:00
README.md Configure settings by config file 2021-05-15 14:40:53 +02:00
app.py Restructure code again 2021-05-15 14:31:07 +02:00
requirements.txt Package module 2021-05-12 21:59:48 +02:00
setup.py Package module 2021-05-12 21:59:48 +02:00

README.md

Uptime Status

Simple status page for server uptime.

Deployment

Init codebase

git clone https://github.com/clerie/uptime-status.git
cd uptime-status/
virtualenv -p python3 ENV
cd ..

Create config.cfg with the following contents and edit values for your needs:

PROMETHEUS_API_BASE="http://[::1]:9090"

Starten und updaten lässt sich die Flask-App folgendermaßen:

cd uptime-status/
git pull
source ENV/bin/activate
pip install -r requirements.txt
UPTIMESTATUS_SETTINGS=/path/to/config.cfg gunicorn uptimestatus:app
deactivate