Skip to content

Commit

Permalink
Merge pull request #48 from nodejitsu/blacksmith-1.0
Browse files Browse the repository at this point in the history
Blacksmith 1.0
  • Loading branch information
indexzero committed Nov 27, 2012
2 parents 47e6394 + 2c3dbba commit a0ccb13
Show file tree
Hide file tree
Showing 75 changed files with 6,214 additions and 2,639 deletions.
37 changes: 37 additions & 0 deletions .blacksmith
@@ -0,0 +1,37 @@
{
"pages": {
"index": {
"partial": "article",
"partials": {
"toc": {
"partial": "topic",
"tree": "article",
"truncate": true,
"sort": [
"a-quickstart",
"features",
"support",
"api",
"appendix"
]
}
}
},
"article": {
"partials": {
"toc": {
"partial": "topic",
"tree": "article",
"truncate": true,
"sort": [
"a-quickstart",
"features",
"support",
"api",
"appendix"
]
}
}
}
}
}
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -3,4 +3,6 @@
*~
book.pdf
book.md
book.html
book.html
node_modules
npm-debug.log
130 changes: 0 additions & 130 deletions Makefile

This file was deleted.

25 changes: 25 additions & 0 deletions README.md
@@ -0,0 +1,25 @@
# The Nodejitsu Handbook

**You can view the Handbook online at http://handbook.jitsu.com**

Welcome to the Nodejitsu handbook. This document will help familiarize you with deploying your Node.js applications to the cloud while also providing detailed information about Nodejitsu's platform-specific features and about where to get help when you need it.

This is a living document which you can submit patches to at [http://github.com/nodejitsu/handbook](http://github.com/nodejitsu/handbook). Note that this entire website is generated fromfrom the individual content files in the `/content` folder, so any edits should be made to those source files, not `/public/*.html`.

### Building the Handbook

The Nodejitsu Handbook is built with [`blacksmith`][blacksmith], so all you need to do is:

1. Install `blacksmith` with `npm`
```
[sudo] npm install blacksmith -g
```
2. Run the `blacksmith` command
```
cd /path/to/handbook
blacksmith
```
3. Start `bin/server`
```
bin/server
```

0 comments on commit a0ccb13

Please sign in to comment.