1
0
mirror of https://github.com/prometheus/docs.git synced 2026-02-05 15:45:27 +01:00

Add bash syntax highlighting to README.md.

This commit is contained in:
juliusv
2014-12-19 16:19:36 +01:00
parent 426fab7c20
commit b95505852b

View File

@@ -8,14 +8,18 @@ Prometheus documentation site.
You need to have a working Ruby environment set up and then install the
necessary gems:
cd docs
bundle
```bash
cd docs
bundle
```
## Building
To generate the static site, run:
bundle exec nanoc
```bash
bundle exec nanoc
```
The resulting static site will be stored in the `output` directory.
@@ -23,10 +27,12 @@ The resulting static site will be stored in the `output` directory.
To run a local server that displays the generated site, run:
# Rebuild the site whenever relevant files change:
bundle exec guard
# Start the local development server:
bundle exec nanoc view
```bash
# Rebuild the site whenever relevant files change:
bundle exec guard
# Start the local development server:
bundle exec nanoc view
```
You should now be able to view the generated site at
[http://localhost:3000/](http://localhost:3000).