aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started/build-tools.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/getting-started/build-tools.md')
-rw-r--r--docs/getting-started/build-tools.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/getting-started/build-tools.md b/docs/getting-started/build-tools.md
index a6d0593fa..a48304ebc 100644
--- a/docs/getting-started/build-tools.md
+++ b/docs/getting-started/build-tools.md
@@ -7,11 +7,16 @@ group: getting-started
Bootstrap uses [Grunt](http://gruntjs.com) for its CSS and JavaScript build system and Jekyll for the written documentation. Our Gruntfile includes convenient methods for working with the framework, including compiling code, running tests, and more.
+## Contents
+
+* Will be replaced with the ToC, excluding the "Contents" header
+{:toc}
+
## Tooling setup
To use our Gruntfile and run our documentation locally, you'll need a copy of Bootstrap's source files, Node, and Grunt. Follow these steps and you should be ready to rock:
-1. [Download and install Node](https://nodejs.org/download), which we use to manage our dependencies.
+1. [Download and install Node](https://nodejs.org/download/), which we use to manage our dependencies.
2. Install the Grunt command line tools, `grunt-cli`, with `npm install -g grunt-cli`.
3. Navigate to the root `/bootstrap` directory and run `npm install` to install our local dependencies listed in [package.json](https://github.com/twbs/bootstrap/blob/master/package.json).
4. [Install Ruby][install-ruby], install [Bundler][gembundler] with `gem install bundler`, and finally run `bundle install`. This will install all Ruby dependencies, such as Jekyll and plugins.