environment fix
This commit is contained in:
27
dev.env
Normal file
27
dev.env
Normal file
@@ -0,0 +1,27 @@
|
||||
# Database config
|
||||
MYSQL_ROOT_PASSWORD=root
|
||||
MYSQL_DATABASE=wordpress
|
||||
MYSQL_USER=wp_admin
|
||||
MYSQL_PASSWORD=wp_password
|
||||
|
||||
# Url where backend application api is available
|
||||
API_URL=http://localhost
|
||||
|
||||
#Wordpress config
|
||||
|
||||
# Determines loading of enviroment specific non sensitive wordpress config file (/backend/config/environments/[WP_ENV].php)
|
||||
# Possible values [development, staging, production]
|
||||
# Note that development value will activate WP_DEBUG, SCRIPT_DEBUG and SAVEQUERIES
|
||||
WP_ENV=development
|
||||
|
||||
# Generate salts here https://api.wordpress.org/secret-key/1.1/salt/
|
||||
WP_AUTH_KEY=generate_me
|
||||
WP_SECURE_AUTH_KEY=generate_me
|
||||
WP_LOGGED_IN_KEY=generate_me
|
||||
WP_NONCE_KEY=generate_me
|
||||
WP_AUTH_SALT=generate_me
|
||||
WP_SECURE_AUTH_SALT=generate_me
|
||||
WP_LOGGED_IN_SALT=generate_me
|
||||
WP_NONCE_SALT=generate_me
|
||||
|
||||
WP_JWT_AUTH_SECRET_KEY=generate_me
|
||||
Reference in New Issue
Block a user