Created
May 22, 2015 13:45
-
-
Save yratof/e2de6d7c6685ad338739 to your computer and use it in GitHub Desktop.
Installing a new meat wordpress
This file contains hidden or 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
# Installing Wordpress with CLI | |
cd your/website/folder | |
# Download Wordpress | |
wp core download | |
# setup the cofig with database, user and pass | |
wp core config --dbname="DATABASE" --dbuser="root" --dbpass="root" | |
# install wordpress with URL, NAME, USERNAME and PASSWORD | |
wp core install --url="WORDPRESS_URL" --title="WORDPRESS_NAME" --admin_user="Full Phat Design" --admin_password="Full Phat Design" --admin_email="[email protected]" | |
# Install woocommerce, yoast and meat theme | |
wp plugin install woocommerce --activate | |
wp plugin install wordpress-seo --activate | |
wp theme install https://github.com/yratof/meat/archive/master.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment