table_game/frontend/config.py
2025-03-10 08:35:19 +08:00

6 lines
158 B
Python

import os
class Config:
SECRET_KEY = os.getenv('SECRET_KEY', 'your-secret-key')
BASE_API_URL = os.getenv('BASE_API_URL', 'http://192.168.5.16:8000')