- Timestamp:
- 10/28/2020 07:01:19 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.env
r49121 r49358 4 4 # All of these options can be overridden by setting them as environment variables before starting 5 5 # the environment. You will need to restart your environment when changing any of these. 6 # 7 # Below, the following substitutions can be made: 8 # - '{version}': any major.minor PHP version from 5.2 onwards. 9 # - '{phpunit_version}': any major PHPUnit version starting with 4. 6 10 ## 7 11 … … 12 16 LOCAL_DIR=src 13 17 14 # The PHP version to use. Valid options are 'latest', and '{version}-fpm', where '{version}' is any 15 # x.y PHP version from 5.2 onwards. 18 # The PHP version to use. Valid options are 'latest', and '{version}-fpm'. 16 19 LOCAL_PHP=latest 20 21 ## 22 # The PHPUnit version to use when running tests. 23 # 24 # Support for new PHPUnit versions is not backported to past versions, so some old WordPress branches require an older 25 # version to run tests. 26 # 27 # Valid versions are: 28 # - 'latest' for the highest version of PHPUnit supported on the highest version of PHP supported. 29 # - '{version}-fpm' for the highest version of PHPUnit supported on the specified version of PHP. 30 # - '{phpunit_version}-php-{version}-fpm' for a specific version of PHPUnit on the specified version of PHP. This format 31 # is only available for PHP versions 5.6 and higher. 32 # 33 # For the full list of available options, see https://hub.docker.com/r/wordpressdevelop/phpunit/tags. 34 # 35 # For full documentation on PHPUnit compatibility and WordPress versions, see 36 # https://make.wordpress.org/core/handbook/references/phpunit-compatibility-and-wordpress-versions/. 37 # 38 # This defaults to the value assigned to the value of LOCAL_PHP. 39 ## 40 LOCAL_PHPUNIT=${LOCAL_PHP} 17 41 18 42 # Whether or not to enable XDebug. -
trunk/docker-compose.yml
r49267 r49358 97 97 ## 98 98 phpunit: 99 image: wordpressdevelop/phpunit:${LOCAL_PHP -latest}99 image: wordpressdevelop/phpunit:${LOCAL_PHPUNIT-latest} 100 100 101 101 networks: -
trunk/package-lock.json
r49324 r49358 9136 9136 }, 9137 9137 "dotenv": { 9138 "version": "8. 1.0",9139 "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8. 1.0.tgz",9140 "integrity": "sha512- GUE3gqcDCaMltj2++g6bRQ5rBJWtkWTmqmD0fo1RnnMuUqHNCt2oTPeDnS9n6fKYvlhn7AeBkb38lymBtWBQdA==",9138 "version": "8.2.0", 9139 "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", 9140 "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", 9141 9141 "dev": true 9142 9142 }, … … 25202 25202 }, 25203 25203 "dependencies": { 25204 "base64-js": { 25205 "version": "1.3.1", 25206 "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", 25207 "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", 25208 "dev": true 25209 }, 25204 25210 "bl": { 25205 25211 "version": "4.0.3", … … 25214 25220 }, 25215 25221 "buffer": { 25216 "version": "5. 6.0",25217 "resolved": "https://registry.npmjs.org/buffer/-/buffer-5. 6.0.tgz",25218 "integrity": "sha512- /gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",25219 "dev": true, 25220 "requires": { 25221 "base64-js": "^1. 0.2",25222 "ieee754": "^1.1. 4"25222 "version": "5.7.0", 25223 "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.0.tgz", 25224 "integrity": "sha512-cd+5r1VLBwUqTrmnzW+D7ABkJUM6mr7uv1dv+6jRw4Rcl7tFIFHDqHPL98LhpGFn3dbAt3gtLxtrWp4m1kFrqg==", 25225 "dev": true, 25226 "requires": { 25227 "base64-js": "^1.3.1", 25228 "ieee754": "^1.1.13" 25223 25229 } 25224 25230 }, -
trunk/package.json
r49324 r49358 36 36 "copy-webpack-plugin": "^5.1.1", 37 37 "cssnano": "4.1.10", 38 "dotenv": "8. 1.0",38 "dotenv": "8.2.0", 39 39 "dotenv-expand": "5.1.0", 40 40 "grunt": "~1.1.0", -
trunk/tools/local-env/scripts/docker.js
r46586 r49358 1 const dotenv = require( 'dotenv' ); 1 const dotenv = require( 'dotenv' ); 2 const dotenvExpand = require( 'dotenv-expand' ); 2 3 const { execSync } = require( 'child_process' ); 3 dotenv.config(); 4 5 dotenvExpand( dotenv.config() ); 4 6 5 7 // Execute any docker-compose command passed to this script. -
trunk/tools/local-env/scripts/install.js
r49335 r49358 1 const dotenv = require( 'dotenv' ); 1 const dotenv = require( 'dotenv' ); 2 const dotenvExpand = require( 'dotenv-expand' ); 2 3 const wait_on = require( 'wait-on' ); 3 4 const { execSync } = require( 'child_process' ); 4 5 const { renameSync, readFileSync, writeFileSync } = require( 'fs' ); 5 6 6 dotenv .config();7 dotenvExpand( dotenv.config() ); 7 8 8 9 // Create wp-config.php. -
trunk/tools/local-env/scripts/start.js
r46586 r49358 1 const dotenv = require( 'dotenv' ); 1 const dotenv = require( 'dotenv' ); 2 const dotenvExpand = require( 'dotenv-expand' ); 2 3 const { execSync } = require( 'child_process' ); 3 4 4 dotenv .config();5 dotenvExpand( dotenv.config() ); 5 6 6 7 // Start the local-env containers.
Note: See TracChangeset
for help on using the changeset viewer.