Skip to content
Snippets Groups Projects
Commit 3526512f authored by Sylvain Arreckx's avatar Sylvain Arreckx
Browse files

Update install instructions.

parent 5d1dc3a3
No related branches found
No related tags found
No related merge requests found
...@@ -10,38 +10,38 @@ ...@@ -10,38 +10,38 @@
## Installation ## Installation
- Update your system - Update your system
``` ```bash
sudo apt-get update sudo apt-get update
sudo apt-get upgrade sudo apt-get upgrade
sudo apt-get install build-essential openssl libssl-dev curl sudo apt-get install build-essential openssl libssl-dev curl
``` ```
- Install Node - Install Node
``` ```bash
sudo apt install npm sudo apt install npm
npm install --global npm@latest npm install --global npm@latest
``` ```
- Under Unix, create a symbolic link for `node` - Under Unix, create a symbolic link for `node`
``` ```bash
sudo ln -s /usr/bin/nodejs /usr/bin/node sudo ln -s /usr/bin/nodejs /usr/bin/node
``` ```
- Install Yeoman, bower and grunt - Install Yeoman, bower and grunt
``` ```bash
sudo npm install --global yo sudo npm install --global yo
npm install -g generator-reveal npm install -g generator-reveal
npm install -g grunt-cli npm install -g grunt-cli
npm install -g bower npm install -g bower
``` ```
- Install other dependencies - Move to the cloned repository and install other dependencies
``` ```bash
npm install && bower install npm install && bower install
``` ```
## Serve ## Serve
``` ```bash
grunt grunt
``` ```
...@@ -57,7 +57,3 @@ $ yo reveal:slide --markdown --attributes --notes "Slide Title" ...@@ -57,7 +57,3 @@ $ yo reveal:slide --markdown --attributes --notes "Slide Title"
grunt dist grunt dist
grunt gh-pages grunt gh-pages
``` ```
## TODO
1. Use http://www.commitstrip.com/wp-content/uploads/2013/11/Strips-_Old-650-finalfinal1.jpg
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment