-
-
Save zhukovec/260f6627778d829ee658225e65d842dc to your computer and use it in GitHub Desktop.
WP-CLI - Install WordPress
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
// 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