environment fix

This commit is contained in:
GotPPay
2018-07-26 19:55:40 +02:00
parent 688cb1ad59
commit 09a2be6be8
4 changed files with 23 additions and 10 deletions

27
dev.env Normal file
View 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