Initial push of DV8 Expo website

This commit is contained in:
Michał Gdula 2023-05-13 15:11:06 +01:00
parent dcc9247ba0
commit a86816a322
18 changed files with 1075 additions and 0 deletions

View file

@ -0,0 +1,7 @@
from flask_sqlalchemy import SQLAlchemy
from flask_caching import Cache
from flask_assets import Environment
db = SQLAlchemy()
cache = Cache()
assets = Environment()