DummyApp/run.py

8 lines
188 B
Python
Raw Normal View History

from app import create_app
app = create_app()
if __name__ == '__main__':
2026-08-04 18:35:03 +03:00
app.run(host='0.0.0.0', port=5000, debug=True)
# this line is only here for to check if Forgejo runner works