You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
326 B
11 lines
326 B
8 years ago
|
# -*- coding: utf-8 -*-
|
||
|
"""Create an application instance."""
|
||
|
import os
|
||
|
|
||
|
from {{cookiecutter.app_name}}.app import create_app
|
||
|
from {{cookiecutter.app_name}}.settings import DevConfig, ProdConfig
|
||
|
|
||
|
CONFIG = ProdConfig if os.environ.get('{{cookiecutter.app_name | upper}}_ENV') == 'prod' else DevConfig
|
||
|
|
||
|
app = create_app(CONFIG)
|