Skip to content

Instantly share code, notes, and snippets.

@marciomassari
Last active May 9, 2021 14:03
Show Gist options
  • Save marciomassari/a81f367cd6566b26d457 to your computer and use it in GitHub Desktop.
Save marciomassari/a81f367cd6566b26d457 to your computer and use it in GitHub Desktop.
WP-CLI - Install WordPress
// install WordPress
wp core download --locale=pt_BR
// configuration wp-config.php
wp core config --dbname=testecli --dbuser=root --dbpass=root --dbprefix=wp_ --locale=pt_BR
// generate database
wp db create
// install WordPress
wp core install --url=example.com --title=Example --admin_user=supervisor --admin_password=strongpassword [email protected]
// more commands: https://developer.wordpress.org/cli/commands
@marciomassari
Copy link
Author

caso ocorra erro no MySQL do MAMP: export PATH=$PATH:/Applications/MAMP/Library/bin

@marciomassari
Copy link
Author

export database: wp db export db_name.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment