Skip to content

Instantly share code, notes, and snippets.

@yratof
Created May 22, 2015 13:45
Show Gist options
  • Save yratof/e2de6d7c6685ad338739 to your computer and use it in GitHub Desktop.
Save yratof/e2de6d7c6685ad338739 to your computer and use it in GitHub Desktop.
Installing a new meat wordpress
# 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