Last active
August 7, 2019 17:13
-
-
Save rfay/f5c0c28cd570cdee1f600ce53e3b0287 to your computer and use it in GitHub Desktop.
ddev enable_xdebug and disable_xdebug commands - put these in .ddev/commands/web
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
#!/bin/bash | |
## Description: Disable xdebug | |
## Usage: disable_xdebug | |
## Example: ddev disable_xdebug | |
export PATH=$PATH:/usr/sbin | |
disable_xdebug |
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
#!/bin/bash | |
## Description: Enable xdebug | |
## Usage: enable_xdebug | |
## Example: ddev enable_xdebug | |
export PATH=$PATH:/usr/sbin | |
enable_xdebug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment