Update configuration and ignore files; added openpyxl to requirements

This commit is contained in:
2025-06-09 12:45:54 +01:00
parent 9a44c2d835
commit f478a52a2f
6 changed files with 138 additions and 7 deletions
+5 -5
View File
@@ -23,11 +23,11 @@ os.makedirs(MODEL_DIR, exist_ok=True)
# Database Configuration
DB_CONFIG = {
"user": os.getenv("DB_USER", "salaryloan"), # Default value as fallback
"password": os.getenv("DB_PASSWORD", "salaryloan"),
"name": os.getenv("DB_NAME", "salaryloan"),
"port": os.getenv("DB_PORT", "10532"),
"host": os.getenv("DB_HOST", "dev-data.simbrellang.net")
"user": os.getenv("DB_USER"), # Default value as fallback
"password": os.getenv("DB_PASSWORD"),
"name": os.getenv("DB_NAME"),
"port": os.getenv("DB_PORT"),
"host": os.getenv("DB_HOST")
}
# Table Configuration