View basic_install.sh
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
echo "DOWNLOADING WORDPRESS" | |
wp core download | |
echo "CREATING AND CONFIGURATION WP-CONFIG" | |
wp core config --dbname=test_demo --dbuser=root --dbpass=root --locale=es_ES | |
# echo "CREATING DATABASE" | |
# mysql -u root -p -e "drop database test_demo"; | |
# mysql -u root -p -e "create database test_demo"; |