fix init db by adding context
This commit is contained in:
parent
22c6084863
commit
5491b763ac
@ -3,7 +3,8 @@ from flaskapp import db
|
||||
|
||||
print('[i] Trying to create databse...')
|
||||
try:
|
||||
db.create_all()
|
||||
with app.app_context():
|
||||
db.create_all()
|
||||
print('[+] Success you can proceed with deployment!')
|
||||
except:
|
||||
print('[-] Creating db failed :/')
|
||||
|
Loading…
Reference in New Issue
Block a user