Basic template

This commit is contained in:
Jurn Wubben 2025-05-19 17:02:20 +02:00
parent bd63ae9a4d
commit 6bceef1664
9 changed files with 66 additions and 0 deletions

6
run.py Normal file
View file

@ -0,0 +1,6 @@
import os
from app import app
if __name__ == "__main__":
port = int(os.environ.get("PORT", 5000))
app.run(host="0.0.0.0", port=port)