9 lines
201 B
Python
9 lines
201 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["ENV"]]
|
||
|
app = create_app(config=config)
|