First Commit

This commit is contained in:
Michał Gdula 2023-04-25 21:43:23 +01:00
parent 7efaf276e4
commit fda7ff28dd
19 changed files with 735 additions and 0 deletions

7
server/extensions.py Normal file
View file

@ -0,0 +1,7 @@
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_caching import Cache
db = SQLAlchemy()
migrate = Migrate()
cache = Cache()