amanuensis/amanuensis/server/__init__.py
2020-01-22 17:15:39 -08:00

30 lines
807 B
Python

import os
from flask import Flask, render_template
from flask_login import LoginManager
import config
from server.auth import get_bp as get_auth_bp
from server.home import get_bp as get_home_bp
from server.lexicon import get_bp as get_lex_bp
# Flask app init
static_root = os.path.abspath(config.get("static_root"))
app = Flask(__name__, template_folder="../templates", static_folder=static_root)
app.secret_key = bytes.fromhex(config.get('secret_key'))
app.jinja_options['trim_blocks'] = True
app.jinja_options['lstrip_blocks'] = True
# Flask-Login init
login = LoginManager(app)
login.login_view = 'auth.login'
# Blueprint inits
auth_bp = get_auth_bp(login)
app.register_blueprint(auth_bp)
home_bp = get_home_bp()
app.register_blueprint(home_bp)
lex_bp = get_lex_bp()
app.register_blueprint(lex_bp)