diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-10-27 22:03:56 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-10-27 22:03:56 +0800 |
commit | 106202912286b4b98ede620a83ae1dd89d42d225 (patch) | |
tree | 8bedd5e6edfcbbf611b728c17ff3866d56d33cac /jimbrella/web.py | |
parent | 0e482d22fc79e80eef0511326d93b1e17d453de5 (diff) |
Register new users
Diffstat (limited to 'jimbrella/web.py')
-rw-r--r-- | jimbrella/web.py | 3 |
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() |