feat: Push initial version

This commit is contained in:
2024-02-09 23:04:20 +11:00
parent 924d9639a5
commit 6f195c86a1
16 changed files with 702 additions and 0 deletions

9
app.py Normal file
View File

@@ -0,0 +1,9 @@
from website.app import create_app
app = create_app({
'SECRET_KEY': 'secret',
'OAUTH2_REFRESH_TOKEN_GENERATOR': True,
'SQLALCHEMY_TRACK_MODIFICATIONS': False,
'SQLALCHEMY_DATABASE_URI': 'sqlite:///db.sqlite',
})