9 lines
207 B
Python
9 lines
207 B
Python
"""Bootstrap the application for web serving."""
|
|
import os
|
|
|
|
from magic_app.app import create_app
|
|
from magic_app.config import CONFIG
|
|
|
|
config = CONFIG[os.environ["FLASK_ENV"]]
|
|
app = create_app(config=config)
|