some updates

This commit is contained in:
lennyaiko
2025-04-10 16:46:46 +01:00
parent cd613579f7
commit 26cf9307d2
5 changed files with 131 additions and 18 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ class Config:
"""Base configuration for Flask app"""
SECRET_KEY = os.getenv("SECRET_KEY", "supersecretkey")
API_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/salary"
SIMBRELLA_AUTH_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/auth"
SIMBRELLA_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/salary"
JWT_SECRET_KEY = os.getenv("JWT_SECRET_KEY", "your_jwt_secret")
DEBUG = True