Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andeplane/master-presentation
https://github.com/andeplane/master-presentation
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/andeplane/master-presentation
- Owner: andeplane
- Created: 2014-05-17T11:21:33.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-19T23:25:48.000Z (over 10 years ago)
- Last Synced: 2024-05-01T21:39:15.521Z (8 months ago)
- Language: CSS
- Size: 7.98 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
master-presentation
===================Prerequisites:
- Node.js (http://nodejs.org/)
- Grunt (http://gruntjs.com/getting-started#installing-the-cli)Installation of prerequisities:
Ubuntu:
sudo apt-get install nodejs npm; sudo npm install -g grunt-cli;
Mac:
Install Homebrew
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"; brew update;
Install Node.js and Grunt
brew install node; npm install -g grunt-cliInstructions (assuming you are in this directory):
- Clone reveal.js in parent directiry
cd ..; git clone https://github.com/hakimel/reveal.js.git; cd reveal.js
- This presentation was made with commit 131c00689a4c7a18e5c991fc8102347e4594b5d4, so if it doesn't work, checkout this commit
git checkout 131c00689a4c7a18e5c991fc8102347e4594b5d4 .
- Copy the content of reveal.js into master-presentation-folder, but don't replace this readme
rsync -av --exclude=".*" --exclude="README.md" --exclude="index.html" * ../master-presentation
- Change to master-presentation directory
cd ../master-presentation
- Install dependencies (sudo might be required)
sudo npm install
- Start the webserver
grunt serve
- Open in browser
http://127.0.0.1:8000/index.htmlInstructions (one-liner):
cd ..; git clone https://github.com/hakimel/reveal.js.git; cd reveal.js; rsync -av --exclude=".*" --exclude="README.md" --exclude="index.html" * ../master-presentation; cd ../master-presentation; sudo npm install; grunt serve