docbrown/docs/contributing.md
rhymes 9210f6793b Improvements on dev docs (#2616)
* Correct installation documentation

* Add stylized titles

* Add some changes to the getting started documentation

* Add changes for the backend guide

* Add changes for the design guide

* Add testing / Q&A guide improvements

* Minor fixes to contributing docs

* More improvements to the general doc

* Improvements for frontend guide
2019-04-29 18:54:29 -04:00

1.2 KiB

title
Contributing to Docs

Contributing to Docs

The documentation you are reading is powered by GitDocs.

Where The Docs Are Located

This documentation is located in the DEV.to codebase within the /docs directory.

The docs are a collection of Markdown files that also utilize FrontMatter.

For more information on how to use GitDocs read the GitDocs guide

Running the Docs Locally

Install the GitDocs NodeJs library

npm install gitdocs -g

Specifying -g will install the library globally which is what you want to do.

If you use yarn you can instead issue:

yarn global add gitdocs

Once installed, to run gitdocs you need to navigate to the root directory of the DEV.to codebase and run

gitdocs serve

This will start a server where you can browse the documentation: http://localhost:8000/

When you add new markdown pages or rename existing ones, you'll have to restart the server before you notice any changes.