diff options
Diffstat (limited to '.github/CONTRIBUTING.md')
-rw-r--r-- | .github/CONTRIBUTING.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 2b90d94a2..819b9a8f5 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md | |||
@@ -20,7 +20,16 @@ interested in, user interface, design, decentralized architecture... | |||
20 | ## Write documentation | 20 | ## Write documentation |
21 | 21 | ||
22 | You can help to write the documentation of the REST API, code, architecture, | 22 | You can help to write the documentation of the REST API, code, architecture, |
23 | demonstrations... | 23 | demonstrations. |
24 | |||
25 | For the REST API you can see the documentation in [/support/doc/api](/support/doc/api) directory. | ||
26 | Then, you can just open the `openapi.yaml` file in a special editor like [http://editor.swagger.io/](http://editor.swagger.io/) to easily see and edit the documentation. | ||
27 | |||
28 | Some hints: | ||
29 | * Routes are defined in [/server/controllers/](/server/controllers/) directory | ||
30 | * Parameters validators are defined in [/server/middlewares/validators](/server/middlewares/validators) directory | ||
31 | * Models sent/received by the controllers are defined in [/shared/models](/shared/models) directory | ||
32 | |||
24 | 33 | ||
25 | ## Develop | 34 | ## Develop |
26 | 35 | ||