change base url variable to BANK_CALL_BASE_URL

This commit was merged in pull request #5.
This commit is contained in:
lennyaiko
2025-04-10 17:36:59 +01:00
parent 16fcd4f4cd
commit 4713cd7454
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ class Config:
"""Base configuration for Flask app"""
SECRET_KEY = os.getenv("SECRET_KEY", "supersecretkey")
SIMBRELLA_AUTH_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/auth"
SIMBRELLA_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/salary"
BANK_CALL_AUTH_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/auth"
BANK_CALL_BASE_URL = "https://coreapi.dev.simbrellang.net/v1/api/salary"
JWT_SECRET_KEY = os.getenv("JWT_SECRET_KEY", "your_jwt_secret")
DEBUG = True