7 lines
159 B
Python
7 lines
159 B
Python
import os, sys
|
|
app_path = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, app_path)
|
|
|
|
from app import create_app
|
|
application = create_app()
|