Skip to content

Commit

Permalink
fix error app cannot load on prod environment
Browse files Browse the repository at this point in the history
  • Loading branch information
adiglase committed Jun 14, 2023
1 parent 29f4ca7 commit 57bfa94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from flask.cli import FlaskGroup
from project.app import app
from project.app import app_ins

cli = FlaskGroup(app)
cli = FlaskGroup(app_ins)

if __name__ == "__main__":
cli()
Expand Down

0 comments on commit 57bfa94

Please sign in to comment.