Installation

Clone the project to your local machine to start a new project.

git clone --depth=1 --branch=master https://github.com/Blake-C/wp-foundation-six.git name-of-your-project

To start a new project cd into name-of-your-project and delete the .git directory. Then run a new git init.

cd name-of-your-project
rm -rf .git
git init

Commit the inital state of the project and push to the remote repo if one exists.

git add .
git commit -m "Initial Commit"
git push origin master

Now you can run composer install then composer update within your name-of-your-project directory. This will install WordPress into the wp directory and install plugins into the wp-content/plugins directory.

The following default plugins will be installed:

Once composer has completed installing WordPress and the default Plugins, change directories to cd wp-content/themes/wp-foundation-six then you can run npm install. This will install the node modules so that Gulp can run its tasks. Jump down to the Gulp Tasks section to learn more about the tasks.