https://github.com/discourse/discourse_api_docs
Discourse API Documentation
https://github.com/discourse/discourse_api_docs
Last synced: 3 months ago
JSON representation
Discourse API Documentation
- Host: GitHub
- URL: https://github.com/discourse/discourse_api_docs
- Owner: discourse
- License: mit
- Created: 2017-02-02T21:11:48.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-04-26T06:54:33.000Z (about 1 year ago)
- Last Synced: 2024-05-09T09:23:24.989Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://docs.discourse.org/
- Size: 1.37 MB
- Stars: 37
- Watchers: 23
- Forks: 38
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Discourse API Documentation

To view the the Discourse API Documentation you can visit:
https://docs.discourse.org/
### Contributing
Contributions are welcome! Start by cloning this repo as well as the
[discourse](https://github.com/discourse/discourse) repo.The API docs are automatically generated from the discourse repo using a tool
called rswag.You can generate the openapi.yml file that is located in this repo by running
this command from inside of your discourse repo directory:```
rake rswag:specs:swaggerize && cp openapi/openapi.yaml ~/code/discourse_api_docs/openapi.yml
```Please do not manually edit the openapi.yml or openapi.json files located in
this repo. These files must be edited from the rswag files located inhttps://github.com/discourse/discourse/tree/main/spec/requests/api
To view your changes locally, run:
```
npm install
node server.js
```Browse to http://localhost:3001 to see the pretty docs.
Before you push your changes or create a PR convert the yml file to json:
```
node tojson.js
```To verify converting to json worked correctly, please run:
```
node server.js json
```which will load the json file directly instead of live converting the yml file
to json. Now browse to http://localhost:3001 and verify your changes still look
okay.Then you can commit your changes and create a PR. This is because we are using
github pages to host the static doc website.### Automatic openapi.yml generation
If you are changing multiple API specs in the core Discourse repo, then you can use the `bundle exec rake autospec:swagger` rake task to watch for changes to files in the `spec/requests/api` directory. When a change is detected the swaggerize rake task command is run, the openapi.yml file is generated, and node tojson.js is run.
This can all be done while the local API docs server is running for live updates every time API spec files are changed.
### Schema Generator
To aid in writing the yml responses in the swagger.yml file use this command to
convert actual json responses to a yml schema file:```
node toschema.js
```Example:
```
node toschema.js responses/topics/topic_respones.json definitions/topics/topic_response.yml
```This will convert a json response into json schema and then convert the schema
to yml.