Docker buid issue

This commit is contained in:
2025-10-17 11:43:46 +05:30
parent 7ec1ac556c
commit 28acb18b68

View File

@ -1,5 +1,6 @@
from app import create_app
app = create_app() # <-- moved here
if __name__ == '__main__':
app = create_app()
app.run(debug=True, port=5000)
app.run(debug=True, port=5000)