FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
wordpress-develop/.env.example at trunk · helen/wordpress-develop · GitHub
helen
/
wordpress-develop
Public
forked from
WordPress/wordpress-develop
Notifications
You must be signed in to change notification settings
Fork
2
Star
2
Code
Issues
3
Pull requests
10
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
wordpress-develop
/
.env.example
Copy path
More file actions
More file actions
Latest commit
History
History
History
69 lines (58 loc) · 1.88 KB
Breadcrumbs
wordpress-develop
/
.env.example
Copy path
File metadata and controls
69 lines (58 loc) · 1.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#
#
#
Default configuration options for the local dev environment.
#
#
All of these options can be overridden by setting them as environment variables before starting
#
the environment. You will need to restart your environment when changing any of these.
#
#
Below, the following substitutions can be made:
#
- '{version}': any major.minor PHP version from 5.2 onwards.
#
#
#
The site will be available at http://localhost:LOCAL_PORT
LOCAL_PORT
=
8889
#
Where to run WordPress from. Valid options are 'src' and 'build'.
LOCAL_DIR
=
src
#
The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
LOCAL_PHP
=
latest
#
Whether or not to enable Xdebug.
LOCAL_PHP_XDEBUG
=
false
#
#
#
The Xdebug features to enable.
#
#
By default, the following features are enabled in the local environment:
#
- Development helpers (`develop`).
#
- Step debugging (`debug`).
#
#
To generate a code coverage report, `coverage` mode must be active.
#
#
For a full list of accepted values, see https://xdebug.org/docs/all_settings#mode.
#
#
LOCAL_PHP_XDEBUG_MODE
=
develop,debug
#
Whether or not to enable Memcached.
LOCAL_PHP_MEMCACHED
=
false
#
#
#
The database software to use.
#
#
Supported values are `mysql` and `mariadb`.
#
#
LOCAL_DB_TYPE
=
mysql
#
#
#
The database version to use.
#
#
Defaults to 8.0 with the assumption that LOCAL_DB_TYPE is set to `mysql` above.
#
#
When using `mysql`, see https://hub.docker.com/_/mysql for valid versions.
#
When using `mariadb`, see https://hub.docker.com/_/mariadb for valid versions.
#
#
LOCAL_DB_VERSION
=
8.4
#
Whether or not to enable multisite.
LOCAL_MULTISITE
=
false
#
The debug settings to add to `wp-config.php`.
LOCAL_WP_DEBUG
=
true
LOCAL_WP_DEBUG_LOG
=
true
LOCAL_WP_DEBUG_DISPLAY
=
true
LOCAL_SCRIPT_DEBUG
=
true
LOCAL_WP_ENVIRONMENT_TYPE
=
local
LOCAL_WP_DEVELOPMENT_MODE
=
core
LOCAL_WP_TESTS_DOMAIN
=
example.org
#
The URL to use when running e2e tests.
WP_BASE_URL
=
http://localhost:
${
LOCAL_PORT
}
Back
|
FazBrowse Home
|
New Git URL