Changeset 53552
- Timestamp:
- 06/21/2022 11:45:19 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.env
r53071 r53552 18 18 LOCAL_PHP=latest 19 19 20 # Whether or not to enable X Debug.20 # Whether or not to enable Xdebug. 21 21 LOCAL_PHP_XDEBUG=false 22 23 ## 24 # The Xdebug features to enable. 25 # 26 # By default, the following features are enabled in the local environment: 27 # - Development helpers (`develop`). 28 # - Step debugging (`debug`). 29 # 30 # To generate a code coverage report, `coverage` mode must be active. 31 # 32 # For a full list of accepted values, see https://xdebug.org/docs/all_settings#mode. 33 ## 34 LOCAL_PHP_XDEBUG_MODE=develop,debug 22 35 23 36 # Whether or not to enable Memcached. -
trunk/.github/workflows/test-coverage.yml
r53112 r53552 20 20 LOCAL_PHP: '7.4-fpm' 21 21 LOCAL_PHP_XDEBUG: true 22 LOCAL_PHP_XDEBUG_MODE: 'coverage' 22 23 LOCAL_PHP_MEMCACHED: ${{ false }} 23 24 -
trunk/docker-compose.yml
r53349 r53552 39 39 environment: 40 40 - LOCAL_PHP_XDEBUG=${LOCAL_PHP_XDEBUG-false} 41 - XDEBUG_MODE=${LOCAL_PHP_XDEBUG_MODE-develop,debug} 41 42 - LOCAL_PHP_MEMCACHED=${LOCAL_PHP_MEMCACHED-false} 42 43 - PHP_FPM_UID=${PHP_FPM_UID-1000}
Note: See TracChangeset
for help on using the changeset viewer.