Files
filmdle/wsgi.py
SimolZimol c142198241 modified: Dockerfile
new file:   wsgi.py
2026-08-07 21:04:02 +02:00

7 lines
126 B
Python

from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000, debug=True)