diff options
author | Hakim El Hattab | 2016-04-29 09:26:28 +0200 |
---|---|---|
committer | Hakim El Hattab | 2016-04-29 09:26:28 +0200 |
commit | 3d49b1dea362d3d05ae154d36927121d922207ad (patch) | |
tree | 1e1b95d6e0154bab910e4d950d1ad4375b8145d1 /README.md | |
parent | 539e774d31f91676bcc3f75e28168921cd27d819 (diff) | |
parent | 87b082340febab46326a55416fbd83fb591bb812 (diff) |
Merge pull request #1571 from adius/patch-1
Simplify full setup
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -1063,31 +1063,29 @@ Some reveal.js features, like external Markdown and speaker notes, require that 1. Install [Node.js](http://nodejs.org/) (1.0.0 or later) -2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli) - -4. Clone the reveal.js repository +1. Clone the reveal.js repository ```sh $ git clone https://github.com/hakimel/reveal.js.git ``` -5. Navigate to the reveal.js folder +1. Navigate to the reveal.js folder ```sh $ cd reveal.js ``` -6. Install dependencies +1. Install dependencies ```sh $ npm install ``` -7. Serve the presentation and monitor source files for changes +1. Serve the presentation and monitor source files for changes ```sh - $ grunt serve + $ npm start ``` -8. Open <http://localhost:8000> to view your presentation +1. Open <http://localhost:8000> to view your presentation - You can change the port by using `grunt serve --port 8001`. + You can change the port by using `npm start -- --port 8001`. ### Folder Structure |