File size: 356 Bytes
1a252b6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import os
class Config:
PORT = int(os.environ.get('PORT', 7860))
UPLOAD_FOLDER = 'uploads'
TEMP_DIR = 'temp_dir'
DATABASE_FILE = 'text_tasks.db'
# Core logic settings
POLL_INTERVAL = 3
CLEANUP_DAYS = 10
settings = Config()
os.makedirs(settings.UPLOAD_FOLDER, exist_ok=True)
os.makedirs(settings.TEMP_DIR, exist_ok=True)
|