Spaces:
Paused
Paused
File size: 199 Bytes
e7d0dbe |
1 2 3 4 5 6 |
import os
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'your-secret-key'
UPLOAD_FOLDER = 'instance/uploads'
MAX_CONTENT_LENGTH = 16 * 1024 * 1024 # 16MB max file size |