File size: 143 Bytes
459b8f5 | 1 2 3 4 5 6 | import os
API_HOST = os.getenv("API_HOST", "localhost")
API_PORT = os.getenv("API_PORT", 8000)
API_BASE_URL = f"http://{API_HOST}:{API_PORT}"
|
459b8f5 | 1 2 3 4 5 6 | import os
API_HOST = os.getenv("API_HOST", "localhost")
API_PORT = os.getenv("API_PORT", 8000)
API_BASE_URL = f"http://{API_HOST}:{API_PORT}"
|