From b3e4fde59d1ab045299d2dd4948bdd879f205815 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 6 Jan 2014 10:16:04 -0500 Subject: [PATCH] Updates to server guide --- server/documents/project/development.html.eco | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/server/documents/project/development.html.eco b/server/documents/project/development.html.eco index bd9be57a3..7b19106c9 100755 --- a/server/documents/project/development.html.eco +++ b/server/documents/project/development.html.eco @@ -44,10 +44,19 @@ type : 'Semantic Project'

3. Install Dependencies

NPM (Node Package Manager) keeps track of all the dependencies required for the project.

-

Running npm update inside the local directory will grab all development dependencies from package.json and store them in the root of the project.

+

Updating npm inside the local directory will grab all development dependencies from package.json and store them in the root of the project.

- npm update + npm update; npm install; +
+ +

Creating Packages for Server

+ +

Docpad will generate a static (html/css only) version of the documentation everytime you update a file inside server/

+

Additionally your server needs to have the latest version of Semantic built before the documentation will appear formatted correctly. Running grunt build will create a version of the library at docs/build available for your server

+ +
+ grunt build