|
2 | 2 |
|
3 | 3 | This is the official repository for Rocket.Chat Documentation.
|
4 | 4 |
|
5 |
| -## How to run Rocket.Chat Docs locally: |
| 5 | +## Requirements |
| 6 | + |
| 7 | +- Ruby >= 2.3 (Recommended >= 2.5) |
| 8 | +- [bundler](https://bundler.io/) gem installed (>= 1.17.3) |
| 9 | + |
| 10 | +## Contributing |
6 | 11 |
|
7 | 12 | This is a quick guide on how to run the docs site locally, for a more in depth guide please look [here](contributing/documentation).
|
8 | 13 |
|
9 |
| -- Install ruby (version 2.6 or higher recommended, if using any version prior to 2.5 you will need to install bundler with `gem install bundler`). If the above fails, try specifing the version by runnning `gem install bundler -v [VERSION]` as per the `BUNDLED WITH [VERSION]` definition in Gemfile.lock file. |
10 |
| -- This step is for only macOS users: |
11 |
| - - You will need to have either `xcode` or the `xcode command line tools` installed. To install the command tools use `xcode-select --install`. Don't forget to accept the `sudo xcodebuild -license` command. |
12 |
| - - Depending on your setup you might need to install [nokogiri](http://www.nokogiri.org/tutorials/installing_nokogiri.html) and its dependencies manually. |
13 |
| -- Fork the [https://github.com/RocketChat/docs](https://github.com/RocketChat/docs) repository. |
14 |
| -- Clone your forked repository to your local enviroment. |
15 |
| -- Run `cd docs/`to enter the cloned docs folder. |
16 |
| -- Run `bundle install`. |
17 |
| -- Start the server with `bundle exec "jekyll serve --incremental --safe"`. |
18 |
| -- The application is now available in your browser at `http://localhost:4000`. |
| 14 | +## Installation |
19 | 15 |
|
20 |
| -## Linting your changes locally: |
| 16 | +Install `bundler` using your terminal, run: |
| 17 | + |
| 18 | +```bash |
| 19 | +$ gem install bundler --version 1.17.3 |
| 20 | +``` |
| 21 | + |
| 22 | +And install the dependencies (also on terminal): |
| 23 | + |
| 24 | +```bash |
| 25 | +$ bundle install |
| 26 | +``` |
| 27 | + |
| 28 | +## Running locally |
21 | 29 |
|
22 |
| -You should always lint your changes to find errors locally before pushing your changes. This only takes seconds, from the `docs` directory: |
| 30 | +Start the server using your terminal: |
23 | 31 |
|
| 32 | +```bash |
| 33 | +$ jekyll serve --incremental --safe |
24 | 34 | ```
|
25 |
| -bundle exec "mdl ./ -r ~MD004 -i -g" |
| 35 | + |
| 36 | +The application will be available on browser at `http://localhost:4000`. |
| 37 | + |
| 38 | +## Linting your changes locally: |
| 39 | + |
| 40 | +You should always lint your changes to find errors locally before pushing your changes. This only takes seconds, from the `docs` directory you can run on terminal: |
| 41 | + |
| 42 | +```bash |
| 43 | +$ mdl ./ -r ~MD004 -i -g |
26 | 44 | ```
|
0 commit comments