Files
old-new-wiaas/environment.env
2018-10-22 09:47:48 +02:00

35 lines
960 B
Bash

# 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
WIAAS_CUSTOMER_INTERFACE=http://localhost:8080
#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
# Emails
WP_SENDGRID_FROM_EMAIL=set_me
WP_SENDGRID_FROM_NAME=Wiaas
WP_SENDGRID_API_KEY=set_me