Files
old-new-wiaas/environment.env

35 lines
960 B
Bash
Raw Permalink Normal View History

2018-07-30 08:54:41 +02:00
# Database config
MYSQL_ROOT_PASSWORD=root
MYSQL_DATABASE=wordpress
MYSQL_USER=wp_admin
MYSQL_PASSWORD=wp_password
2018-07-30 17:26:55 +02:00
# Url where backend application api is available
API_URL=http://localhost
2018-10-11 04:16:43 +02:00
WIAAS_CUSTOMER_INTERFACE=http://localhost:8080
2018-07-30 08:54:41 +02:00
#Wordpress config
2018-07-30 10:13:34 +02:00
# Determines loading of enviroment specific non sensitive wordpress config file (/backend/config/environments/[WP_ENV].php)
2018-07-30 17:26:55 +02:00
# Possible values [development, staging, production]
# Note that development value will activate WP_DEBUG, SCRIPT_DEBUG and SAVEQUERIES
2018-07-30 10:13:34 +02:00
WP_ENV=development
2018-07-30 17:26:55 +02:00
# Generate salts here https://api.wordpress.org/secret-key/1.1/salt/
2018-07-30 16:26:46 +02:00
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
2018-07-26 15:34:02 +02:00
WP_JWT_AUTH_SECRET_KEY=generate_me
# Emails
WP_SENDGRID_FROM_EMAIL=set_me
WP_SENDGRID_FROM_NAME=Wiaas
WP_SENDGRID_API_KEY=set_me