This commit is contained in:
piecka 2025-03-21 11:19:20 +01:00
commit 42f1d1012f
18 changed files with 399 additions and 0 deletions

7
app/config.py Normal file
View file

@ -0,0 +1,7 @@
import os
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY', 'dev-key-please-change')
UPLOAD_FOLDER = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'uploads')
DEBUG = True
MAX_CONTENT_LENGTH = 16 * 1024 * 1024