Created
January 10, 2022 17:20
-
-
Save martin-josef/ec75cf856e0dec0060b98bad4c1dcc07 to your computer and use it in GitHub Desktop.
A .env file to use with bedrock and wordmove.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DB_NAME= | |
DB_USER= | |
DB_PASSWORD= | |
# Optional variables | |
DB_HOST='127.0.0.1' # Changed from localhost due to DBngin | |
# DB_PREFIX='wp_' | |
WP_ENV='development' | |
WP_HOME='http://example.com' | |
WP_SITEURL="${WP_HOME}/wp" | |
WP_DEBUG_LOG=/web/app/debug.log | |
# ---- Wordmove ---- | |
# ---- LOCAL env ('local') ---- | |
### host & path | |
LOCAL_PATH= | |
### database — is at the top of the file | |
# ---- STAGING env ('staging') ---- | |
### host & path | |
STA_VHOST= | |
STA_PATH= | |
### staging database | |
STA_DB_NAME= | |
STA_DB_USER= | |
STA_DB_PASS= | |
STA_DB_HOST= | |
### ssh | |
STA_DB_SSH_HOST= | |
STA_DB_SSH_USER= | |
# ---- PRODUCTION env ('production') ---- | |
### host & path | |
PROD_VHOST= | |
PROD_PATH= | |
### database | |
PROD_DB_NAME= | |
PROD_DB_USER= | |
PROD_DB_PASS= | |
PROD_DB_HOST= | |
### ssh | |
PROD_DB_SSH_HOST= | |
PROD_DB_SSH_USER= | |
# ---- SALTS ---- | |
AUTH_KEY= | |
SECURE_AUTH_KEY= | |
LOGGED_IN_KEY= | |
NONCE_KEY= | |
AUTH_SALT= | |
SECURE_AUTH_SALT= | |
LOGGED_IN_SALT= | |
NONCE_SALT= |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment