Skip to content

Instantly share code, notes, and snippets.

@zhukovec
Forked from marciomassari/wp-cli-install.sh
Created April 12, 2018 21:38
Show Gist options
  • Save zhukovec/260f6627778d829ee658225e65d842dc to your computer and use it in GitHub Desktop.
Save zhukovec/260f6627778d829ee658225e65d842dc 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment