You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
961 B
Python
37 lines
961 B
Python
import click
|
|
from flask import Flask
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
from app import config
|
|
|
|
|
|
db = SQLAlchemy()
|
|
|
|
|
|
def setup_db(app: Flask):
|
|
uri = 'postgresql+psycopg2://{user}:{pw}@{host}:{port}/{db}'.format(
|
|
user=config.DB_USER,
|
|
pw=config.DB_PASS,
|
|
host=config.DB_HOST,
|
|
port=config.DB_PORT,
|
|
db=config.DB_NAME
|
|
)
|
|
app.config['SQLALCHEMY_DATABASE_URI'] = uri
|
|
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
|
db = SQLAlchemy(app)
|
|
return db
|
|
|
|
|
|
def create_app():
|
|
app = Flask(__name__)
|
|
app.config.from_envvar('FLASK_SECRETS')
|
|
setup_db(app)
|
|
with app.app_context():
|
|
from app.routes import meta, operation, api
|
|
from app import filters, cli
|
|
app.register_blueprint(meta.bp)
|
|
app.register_blueprint(operation.bp)
|
|
app.register_blueprint(api.bp)
|
|
app.register_blueprint(filters.bp)
|
|
app.register_blueprint(cli.bp)
|
|
return app
|