Skip to content

Instantly share code, notes, and snippets.

@rfay
Last active August 7, 2019 17:13
Show Gist options
  • Save rfay/f5c0c28cd570cdee1f600ce53e3b0287 to your computer and use it in GitHub Desktop.
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
#!/bin/bash
## Description: Disable xdebug
## Usage: disable_xdebug
## Example: ddev disable_xdebug
export PATH=$PATH:/usr/sbin
disable_xdebug
#!/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