12 lines
194 B
Python
12 lines
194 B
Python
"""
|
|
WSGI entrypont
|
|
"""
|
|
import os
|
|
import sys
|
|
from app import create_app
|
|
|
|
app_path = os.path.dirname(os.path.abspath(__file__))
|
|
sys.path.insert(0, app_path)
|
|
|
|
application = create_app()
|