modified: Dockerfile

new file:   wsgi.py
This commit is contained in:
SimolZimol
2026-08-07 21:04:02 +02:00
parent 526b0353e7
commit c142198241
2 changed files with 7 additions and 1 deletions

6
wsgi.py Normal file
View File

@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=True)