ti-powerbar/app/__init__.py

10 lines
270 B
Python
Raw Normal View History

2023-11-18 23:23:17 +00:00
from flask import Flask, request, redirect, url_for, render_template
2023-11-19 00:07:25 +00:00
from app.views import routes
2023-11-18 23:23:17 +00:00
def create_app():
# create and configure the app
app = Flask(__name__)
app.config.from_pyfile('settings.py')
2023-11-19 00:07:25 +00:00
app.register_blueprint(routes)
return app