This commit is contained in:
2023-10-20 15:20:56 +02:00
commit 22c6084863
19 changed files with 705 additions and 0 deletions

10
init_db.py Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
from flaskapp import db
print('[i] Trying to create databse...')
try:
db.create_all()
print('[+] Success you can proceed with deployment!')
except:
print('[-] Creating db failed :/')