fix: change DB_PASSWORD to static value for development

Using a static password simplifies development environment setup. The previous random password generation caused issues during local testing and debugging.
This commit is contained in:
kithmina1999
2025-06-05 10:40:06 +05:30
parent f4ab7841fb
commit 09f44a5685

View File

@@ -92,7 +92,7 @@ LOGIN_SUCCESS_REDIRECT="${FRONTEND_URL}/auth/authenticating"
DB_HOST=db
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=$(openssl rand -base64 48)
DB_PASSWORD=password
DB_NAME=worklenz_db
DB_MAX_CLIENTS=50
USE_PG_NATIVE=true