11 lines
199 B
Python
11 lines
199 B
Python
from applications import create_app
|
|
from flask_migrate import Migrate
|
|
from applications.extensions import db
|
|
|
|
app = create_app()
|
|
|
|
migrate = Migrate(app, db)
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|