mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-12 22:12:54 -06:00
23 lines
563 B
Python
23 lines
563 B
Python
from flask import Flask
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
# init SQLAlchemy
|
|
db = SQLAlchemy()
|
|
|
|
def create_app():
|
|
app = Flask(__name__)
|
|
|
|
app.config['SECRET_KEY'] = 'secret key goes here'
|
|
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///db.sqlite'
|
|
|
|
db.init_app(app)
|
|
|
|
# blueprint for auth routes in app
|
|
from .auth import auth as auth_blueprint
|
|
app.register_blueprint(auth_blueprint)
|
|
|
|
# blueprint for non-auth parts of app
|
|
from .main import main as main_blueprint
|
|
app.register_blueprint(main_blueprint)
|
|
|
|
return app |