#About the Yeopress Presentation Project ##The cool way to kickstart your WordPress Project
This repository has been set up as an educational repository for those looking to learn about what Yeoman has to offer. This repo contains two major parts a presentational repo (built using reveal.js and Yeoman), and a bare bones site repository that also happens to be its own repository found: here and contains instructions on how to get a working WordPress site up and running.
(Note: You should have some experience with both Github as well as the Command Prompt or Terminal )
#How to install reveal.js and view the slides
To be able to view the slideshow for this repository there are a couple tools that you need to have installed and in just a few simple commands, the presentation will be viewable right on your machine.
The good news is, Option 1 downloads the same tools you'll need for the Yeopress Example repository!
(Note: There are two optional paths you can take to view the slides, though I would suggest using option one as it installs Yeoman, which is used in the accompanying Yeopress Example repository)
- ####Install Node
- Navigation to the Downloads Page for Node and install the version that matches your operating system. (Note: You can also install Node.js by cloning their repository from: here and follow the installation instructions for your operating system, though I would only recommend this option to advanced users.)
- ####Install Grunt
- With your Terminal or Command Prompt still open, enter the following:
npm install -g grunt-cli
- With your Terminal or Command Prompt still open, enter the following:
-
####(Option 1:) Install Yeoman (Note: If you choose Option 1, you can disregard Option 2)
- Open either your Terminal or Command Prompt and enter the following
npm install -g yo
- Open either your Terminal or Command Prompt and enter the following
-
####(Option 2:) Install Bower (Note: If you choose Option 2, you can disregard Option 1)
- Install Bower
- Open your Terminal or Command Prompt and enter the following:
npm install -g bower
- Open your Terminal or Command Prompt and enter the following:
- Install Bower
-
####Set up the slideshow!
- With your Terminal or Command Prompt still open, navigate to the directory that you cloned this repository to.
- Run the following commands while inside of the
<root>/yeopress-presentation
directory:npm install && bower install
(Note: If you you just cloned the directory from github without changing the directory name, it should look like:YeoPress-Presentation/yeopress-presentation
)
-
####View the Slideshow!
- With your Terminal or Command Prompt still open and while still in the
same directory, run the following command:
grunt serve
The slideshow should now load up on your default internet browser!
- With your Terminal or Command Prompt still open and while still in the
same directory, run the following command: