refactor: standardize database credentials and naming
All checks were successful
Deploy to Production / deploy (push) Successful in 1m46s
All checks were successful
Deploy to Production / deploy (push) Successful in 1m46s
- Updated database credentials to use consistent naming pattern across variables - Simplified database name from voxblog_prod to voxblog for clarity - Added explicit MYSQL_ROOT_PASSWORD and MYSQL_PASSWORD variables for container setup - Changed DB_USER from voxblog_user to voxblog to match database naming convention
This commit is contained in:
parent
b593ca35d5
commit
2c5c685662
8
.env
8
.env
@ -1,9 +1,11 @@
|
|||||||
# Database
|
# Database
|
||||||
|
MYSQL_ROOT_PASSWORD=voxblogRootPass123!
|
||||||
|
MYSQL_PASSWORD=voxblogAppPass123!
|
||||||
DB_HOST=mysql
|
DB_HOST=mysql
|
||||||
DB_PORT=3306
|
DB_PORT=3306
|
||||||
DB_USER=voxblog_user
|
DB_USER=voxblog
|
||||||
DB_PASSWORD=P!JfChRiaA2Gdnm6iIo8!
|
DB_PASSWORD=voxblogAppPass123!
|
||||||
DB_NAME=voxblog_prod
|
DB_NAME=voxblog
|
||||||
|
|
||||||
# Application
|
# Application
|
||||||
ADMIN_PASSWORD=P!JfChRiaA2Gdnm6iIo8
|
ADMIN_PASSWORD=P!JfChRiaA2Gdnm6iIo8
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user