This repository contains the docs shown at https://docs.fourieraudio.com. If you just want to read them, head over there!
We gratefully receive issues (if you've found something that's missing or incorrect), and pull requests (if you're feeling keen and want to improve something yourself!).
Feel free to create PRs directly from the GitHub online editor; all of the documentation is stored within files under docs/.
However, if you're making more significant updates and you want to preview your changes locally, you can create your own version of the docs on your computer:
-
To start, you'll want to prepare a development environment. Install
nodejs
andyarn
if you don't have them already, using your favourite package manager (homebrew
is your best bet on macOS, or whatever your distribution provides on linux). -
Clone the repository and install its dependencies:
$ git clone git@github.com:fourieraudio/docs.git
$ cd docs
$ yarn
- Start a local copy of the docs:
$ yarn start
-
A browser window opens which will allow you to preview changes live as you make them.
-
Make any updates you want, commit them to a new branch, and open a pull request (there's good guides for how to do this on the internet if you're new to it). Your changes will be reviewed and merged!