mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-19 09:44:52 +00:00
Adding login system
This commit is contained in:
parent
36be8993df
commit
27bf6f64ef
6 changed files with 51 additions and 11 deletions
|
@ -1,9 +1,11 @@
|
|||
from flask_sqlalchemy import SQLAlchemy
|
||||
from flask_migrate import Migrate
|
||||
from flask_login import LoginManager
|
||||
from flask_caching import Cache
|
||||
from flask_assets import Environment
|
||||
|
||||
db = SQLAlchemy()
|
||||
migrate = Migrate()
|
||||
cache = Cache()
|
||||
login_manager = LoginManager()
|
||||
cache = Cache(config={"CACHE_TYPE": "simple"})
|
||||
assets = Environment()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue