Skip to content

paulRbr/discourse_api_docs

 
 

Repository files navigation

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 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 in

https://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.

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 <input file> <output file>

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.

About

Discourse API Documentation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 50.5%
  • HTML 40.2%
  • Ruby 8.0%
  • Shell 1.3%