Fix db init script
This commit is contained in:
parent
32c60eaff5
commit
d75732fdcf
2 changed files with 6 additions and 4 deletions
|
@ -3,7 +3,7 @@ import add_fitchen
|
||||||
import add_oceans_garden
|
import add_oceans_garden
|
||||||
import add_primadonna
|
import add_primadonna
|
||||||
import add_simpizza
|
import add_simpizza
|
||||||
from app import db
|
from app import db, create_app
|
||||||
|
|
||||||
entry_sets = {
|
entry_sets = {
|
||||||
"Admins": add_admins.add,
|
"Admins": add_admins.add,
|
||||||
|
@ -71,8 +71,10 @@ def add_to_current() -> None:
|
||||||
print("Not a valid answer.")
|
print("Not a valid answer.")
|
||||||
print("Thank you for adding, come again!")
|
print("Thank you for adding, come again!")
|
||||||
|
|
||||||
|
manager = create_app()
|
||||||
|
|
||||||
def init() -> None:
|
@manager.command
|
||||||
|
def setup_database():
|
||||||
print("Database modification script!")
|
print("Database modification script!")
|
||||||
print("=============================\n\n")
|
print("=============================\n\n")
|
||||||
if check_if_overwrite():
|
if check_if_overwrite():
|
||||||
|
@ -82,4 +84,4 @@ def init() -> None:
|
||||||
commit()
|
commit()
|
||||||
|
|
||||||
|
|
||||||
init()
|
manager.run()
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
cd app
|
cd app
|
||||||
cp database/* .
|
cp database/* .
|
||||||
python create_database.py
|
python create_database.py setup_database
|
||||||
rm -f add_* create_database.py muhscheme
|
rm -f add_* create_database.py muhscheme
|
||||||
|
|
Loading…
Reference in a new issue