32 lines
925 B
Bash
32 lines
925 B
Bash
# Database config
|
|
MYSQL_ROOT_PASSWORD=root
|
|
MYSQL_DATABASE=wordpress
|
|
MYSQL_USER=wp_admin
|
|
MYSQL_PASSWORD=wp_password
|
|
|
|
|
|
API_URL=url
|
|
|
|
#Wordpress config
|
|
|
|
# Determines loading of enviroment specific non sensitive wordpress config file (/backend/config/environments/[WP_ENV].php)
|
|
# Set this to local only for local wordpress development (it will activate WP_DEBUG, SCRIPT_DEBUG and SAVEQUERIES)
|
|
WP_ENV=development
|
|
|
|
# Required for local wordpress development only for quick override of default db if needed
|
|
#WP_DB_HOST=localhost
|
|
|
|
# Required for local wordpress development since dotenv allows this kind of initialization
|
|
# For docker deployment this is done inside docker container
|
|
#WP_HOME=${API_URL}
|
|
|
|
AUTH_KEY=generate_me
|
|
SECURE_AUTH_KEY=generate_me
|
|
LOGGED_IN_KEY=generate_me
|
|
NONCE_KEY=generate_me
|
|
AUTH_SALT=generate_me
|
|
SECURE_AUTH_SALT=generate_me
|
|
LOGGED_IN_SALT=generate_me
|
|
NONCE_SALT=generate_me
|
|
|
|
JWT_AUTH_SECRET_KEY=generate_me |