mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-21 15:14:19 +00:00
Make things work again
This commit is contained in:
parent
ad72202535
commit
26a5302346
4 changed files with 21 additions and 19 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@ db.sqlite
|
|||
db.sqlite-journal
|
||||
data.db
|
||||
.idea
|
||||
.venv
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
flask
|
||||
flask_sqlalchemy
|
||||
sqlalchemy
|
||||
bcrypt
|
||||
flask>=3
|
||||
flask_sqlalchemy>=3
|
||||
sqlalchemy>=1.4,<=2
|
||||
bcrypt>=4
|
|
@ -1024,6 +1024,7 @@ def inject_vars():
|
|||
if __name__ == "__main__":
|
||||
# Se non esiste il database, crealo e inizializzalo!
|
||||
if not os.path.isfile("db.sqlite"):
|
||||
with app.app_context():
|
||||
db.create_all()
|
||||
try:
|
||||
# L'utente predefinito è "stagista" "smecds".
|
||||
|
|
Loading…
Reference in a new issue