Created
February 19, 2018 14:21
-
-
Save Luminus/45e886809c81e325894a0825374065ec to your computer and use it in GitHub Desktop.
My `~/.wp-cli/config.yml` file for bending WP-CLI and the WP-CLI Valet Command to my will
This file contains 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
core config: | |
dbuser: root | |
dbpass: root | |
extra-php: | | |
define('WP_DEBUG', true); | |
define('WP_DEBUG_LOG', true); | |
define('WP_DEBUG_DISPLAY', false); | |
@ini_set('display_errors',0); | |
define( 'WCS_DEBUG', true ); | |
core install: | |
admin_user: luminus | |
admin_password: password | |
admin_email: [email protected] | |
core download: | |
# locale: nl_NL | |
skip-content: true | |
valet new: | |
admin_user: luminus | |
admin_password: password | |
dbpass: root | |
valet destroy: | |
yes: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment