DummyApp/run.py

10 lines
221 B
Python
Raw 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-04 18:35:03 +03:00
app.run(host='0.0.0.0', port=5000, debug=True)
2026-08-04 21:22:11 +03:00
2026-08-04 18:35:03 +03:00
# this line is only here for to check if Forgejo runner works