test runner
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

This commit is contained in:
Norvicdev 2026-08-04 18:35:03 +03:00
parent 879a8f4e01
commit 743226fcbf

4
run.py
View file

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