DummyApp/run.py
Norvicdev 743226fcbf
Some checks are pending
Build and Deploy Flask App / test (push) Waiting to run
Build and Deploy Flask App / build-and-push (push) Blocked by required conditions
Build and Deploy Flask App / deploy (push) Blocked by required conditions
test runner
2026-08-04 18:35:03 +03:00

8 lines
No EOL
188 B
Python

from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)
# this line is only here for to check if Forgejo runner works