# Database config MYSQL_ROOT_PASSWORD=root MYSQL_DATABASE=wordpress MYSQL_USER=wp_admin MYSQL_PASSWORD=wp_password API_URL=url #Wordpress config WP_ENV=development -- set this to local only for local wordpress development (it will activate script debug and query save) WP_DB_HOST=localhost -- for local wordpress development only to override default db if needed WP_HOME=${API_URL} -- for local wordpress development since dotenv allows this kind of initialization 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