batman
This commit is contained in:
commit
42f1d1012f
18 changed files with 399 additions and 0 deletions
7
app/config.py
Normal file
7
app/config.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue