Files
test-app/run.py
akula 4ef44fc2ed
Some checks failed
ci/woodpecker/push/publish Pipeline failed
1
2024-12-03 12:29:43 +03: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=5000, debug=True)