mirror of
https://github.com/fergalmoran/bitchmin.git
synced 2025-12-22 09:27:53 +00:00
13 lines
215 B
Python
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()
|