DummyApp/run.py

7 lines
157 B
Python
Raw Permalink Normal View History

from app import create_app
app = create_app()
if __name__ == '__main__':
2026-08-05 18:52:27 +03:00
print("Starting server...")
2026-08-06 22:01:29 +03:00
app.run(host='0.0.0.0', port=5000, debug=True)