6 lines
158 B
Python
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')
|