ocrsensitive / app /config.py
mashaelalbu's picture
Upload 10 files
e7d0dbe verified
raw
history blame contribute delete
199 Bytes
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