calendar_streamlit / config.py
Raul Garcia
Push
eb0b2fd
raw
history blame
No virus
415 Bytes
from dotenv import load_dotenv
import os
# Cargar variables de entorno de .env
load_dotenv()
class CONFIG:
AUTH_URL = os.environ.get("AUTH_URL", "https://api-dev.blaucorp.com/api/v1/dashboardAuth")
API_V1_BASE_URL = os.environ.get("API_V1_BASE_URL", "https://api-dev.blaucorp.com/api/v1")
API_V2_BASE_URL = os.environ.get("API_V2_BASE_URL", "https://api-dev.blaucorp.com/api/v2/graphql")