DummyApp/run.py
Norvicdev e6e700c2ee
Some checks failed
Build and Deploy Flask App / test (pull_request) Has been cancelled
Build and Deploy Flask App / build-and-push (pull_request) Has been cancelled
Build and Deploy Flask App / deploy (pull_request) Has been cancelled
entire app update:
moder view app with static page, forgejo ci/cd workflow
2026-08-04 17:29:48 +03:00

6 lines
No EOL
125 B
Python

from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)