Add login manager.

This commit is contained in:
Alexis Lahouze 2015-11-27 12:28:44 +01:00
parent c4302e9b13
commit ddc9d74cf3
1 changed files with 4 additions and 1 deletions

View File

@ -18,17 +18,20 @@ from flask import Flask, redirect, url_for
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.bower import Bower
from flask.ext.assets import Environment
from flask.ext.login import LoginManager
# The app
app = Flask(__name__, static_folder=None)
app.config.from_pyfile('config.cfg')
# Configure login_manager
login_manager = LoginManager(app=app)
app.config['SQLALCHEMY_ECHO'] = app.debug
db = SQLAlchemy(app)
# Must be after db declaration because the blueprints may need it.
from .api import api
from .frontend import frontend, frontend_js, frontend_css