Files
bitchmin/bitchmin-api/app/tests/scaffold.py
Fergal Moran 7d242820cd armv7 build
2020-11-14 21:38:13 +00:00

13 lines
215 B
Python

from app import create_app
from seeder import DbSeeder
if __name__ == '__main__':
app = create_app()
ctx = app.app_context()
ctx.push()
from app import db
db.app = app
DbSeeder(db).seed()