Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 962 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 962 Bytes

How to contribute to GO Feature Flag website

This website is built using Docusaurus 2, a modern static website generator.

You will need to have nodejs installed in your machine to work with the documentation website.

Launch locally

Your can start locally the website.

  1. Open a terminal and go to the root project of this repository.
  2. Launch the command bellow, it will install the dependencies and run the local server for the documentation.
make watch-doc
  1. You can now access to the documentation directly in your browser: http://localhost:3000/.

Build the documentation

  1. Open a terminal and go to the root project of this repository.
  2. Launch the command bellow, it will install the dependencies and build the documentation.
make build-doc
  1. If you want to see the result of your build, you can serve it with this command:
make serve-doc