-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env
More file actions
52 lines (40 loc) · 2.48 KB
/
.env
File metadata and controls
52 lines (40 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# this file is sourced into every ./scripts/* command
#
# `.env` files can even be placed in any su package directory (example: `./packages/wp-plugin/foo/.env`)
#
# additional options attached to clean* commands
# default to interactive clean
GIT_CLEAN_OPTS='-Xfd --interactive'
# directory to store wp-env data
WP_ENV_HOME=./wp-env-home
# automatically create wp-plugin localizations for the given languages
# (if not set or empty, no localizations will be created)
WP_CLI_I18N_LOCALES='en_US de_DE es_ES es_MX fr_FR it_IT nl_NL sv_SE'
# used for docker image metadata generation
VENDOR='IONOS Group'
# the ionos essentials security feature option is enabled by default so we need to use a 'safe' password from the beginning
# otherwise playwright e2e tests would always fail since it requires a valid user
# this password will be set as the default admin password for the wp-env wp containers in after start command
# this environment variable is also used in e2e/playwright tests
WP_PASSWORD='g0lasch0815!'
# wordpress version to use
WP_ENV_CORE="${WP_ENV_CORE:-WordPress/WordPress#6.9.4}"
# path to store playwright e2e test storage states when using @wordpress/e2e-test-utils-playwright
# see https://github.com/WordPress/gutenberg/blob/trunk/packages/e2e-test-utils-playwright/src/test.ts#L21C7-L21C25
STORAGE_STATE_PATH="./playwright/e2e/.storage-states/admin.json"
# the keys of the following array are in version control, they will be copied to the assigned locale
LANGUAGE_MAPPINGS='de_DE=de_CH de_DE=de_AT de_DE=de_CH_informal de_DE=de_DE_formal fr_FR=fr_CA fr_FR=fr_BE es_ES=es_CL es_ES=es_AR es_ES=es_CO es_ES=es_CR es_ES=es_GT es_ES=es_PE es_ES=es_VE'
# enable or disable gitleaks secret scanning in the pre-commit hook
CHECK_LEAKED_SECRETS='true'
# possible configs for the 'pnpm stretch' target
# configure the path to your SSH public key file consumed by the root packages stretch script for ssh enablement
# SSH_PUB_FILE=~/.ssh/LarsGersmann_ed25519.pub
# known STRETCH instances are stretch.vision and 82.165.23.75 (stretch.monster and stretch.love)
# STRETCH_ROOT_HOST="${STRETCH_ROOT_HOST:-stretch.vision}"
# known stretch hosts are stretch.vision, stretch.monster and stretch.love
# STRETCH_HOST="${STRETCH_HOST:-stretch.vision}"
# known stretch pillars are db (stretch.vision) two (stretch.monster) and one (stretch.love)
# STRETCH_PILLAR="${STRETCH_PILLAR:-db}"
# known stretch host ports are 222 (stretch.vision) and 22 (stretch.monster and stretch.love)
# STRETCH_HOST_PORT="${STRETCH_HOST_PORT:-222}"