From abb936d23df7b0460f2d80747bbf960b635677ee Mon Sep 17 00:00:00 2001 From: Mattias Erming Date: Mon, 28 Jul 2014 23:29:31 +0200 Subject: [PATCH] Update README.md --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/README.md b/README.md index e590595..0a8c9c9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,31 @@ # Boilerplate theme This is the boilerplate theme for [JSON Resume](http://jsonresume.org/). + +## Getting started + +To get started with theme development, this is what you'll need: + + +- [node.js](http://http://howtonode.org/how-to-install-nodejs) +- [npm](http://howtonode.org/introduction-to-npm) + +If you're on Linux, you can simply run: + +``` +apt-get install nodejs-legacy npm +``` + +Or if you're on OSX and got [Homebrew](http://brew.sh/) installed: +``` +brew install node +``` + +### Installing the command line + +We're going to use [resume-cli](https://github.com/jsonresume/resume-cli) to run our development server. +Go ahead and install it: + +``` +npm install -g resume-cli +```