Skip to content

nagyv/api-docs-generator

 
 

Repository files navigation

API docs generator

This is a very basic script that renders the YAML file (in the OpenAPI 3.0 spec) that is used as the source for Firefly III's API documentation. I wrote it because the API YAML file was well over 1400 lines before I got sick of editing such a large file. The current stitched result is well over 7500 lines at the time of writing.

How it works

What it does is simply join all YAML files in /yaml/ together, preceded by the start.yaml.twig file in the /templates/ directory.

  1. Rename .env.example to .env and adjust the variables accordingly, e.g.

    API_VERSION=0.10.0
    API_DESTINATION=./
    API_ROOT=./
  2. Install dependencies via Composer

    $ composer install

  3. Install PHP yaml.so extension. It should be added to your php.ini automatically.

    $ pecl install yaml

  4. Generate firefly-iii-${API_VERSION}.yaml file

    $ php index.php

The resulting firefly-iii-${API_VERSION}.yaml file can be imported into your favorite API development environment to play around with, e.g. Postman.

Firefly III API collection in Postman

Current state

I'm actively writing all API documentation, so the file may change.

Contributing

Feel free to create a PR on anything. If you want to change endpoints, check out /yaml/paths. Or edit objects in /yaml/schemas. This is my first API document so feel free to tell me how to improve.

See the result

You can see the result on this page.

Need help?

If you need support using Firefly III or the associated tools, come find us!

Donate

If you feel Firefly III made your life better, consider contributing as a sponsor. Please check out my Patreon and GitHub Sponsors page for more information. Thank you for considering.

About

Support repository: A script to generate the API documentation.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 92.8%
  • Twig 6.7%
  • Shell 0.5%