Update configuration and ignore files; added openpyxl to requirements
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user