def create_app():
# See http://flask.pocoo.org/docs/patterns/appfactories
app = flask.Flask(__name__)
nav.nav.init_app(app)
flask_dotenv.DotEnv().init_app(app, verbose_mode = True)
flask_bootstrap.Bootstrap(app)
app.register_blueprint(frontend)
app.config['BOOTSTRAP_SERVE_LOCAL'] = True
app.config['TEMPLATES_AUTO_RELOAD'] = True
return app
评论列表
文章目录