9 lines
141 B
Python
9 lines
141 B
Python
from application import create_app
|
|
|
|
app = create_app()
|
|
ctx = app.app_context()
|
|
ctx.push()
|
|
ctx.pop()
|
|
|
|
if __name__ == "__main__":
|
|
app.run() |