summaryrefslogtreecommitdiff
path: root/jimbrella/web.py
diff options
context:
space:
mode:
Diffstat (limited to 'jimbrella/web.py')
-rw-r--r--jimbrella/web.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/jimbrella/web.py b/jimbrella/web.py
index f9bc586..9db37ef 100644
--- a/jimbrella/web.py
+++ b/jimbrella/web.py
@@ -1,9 +1,12 @@
from flask import Flask
from .admin import bp as admin_bp
+from .auth import bp as auth_bp
from .config import *
app = Flask("jimbrella")
+app.secret_key = FLASK_SECRET_KEY
app.register_blueprint(admin_bp)
+app.register_blueprint(auth_bp)
if __name__ == "__main__":
app.run()