This is the documentation site for the viagogo API! (http://developer.viagogo.net)
All submissions are welcome. Fork the repository, read the rest of this README file and make some changes. Once you're done with your changes send a pull request. Thanks!
You're going to need:
- Fork this repository on Github.
- Clone your forked repository (not our original one) to your hard drive with
git clone https://github.com/YOURUSERNAME/viagogo-api-docs.git cd viagogo-api-docs- Install all dependencies:
npm install - Start the preview server:
npm run start
You can now see the docs at http://localhost:8080. Whoa! That was fast!
.
├── dist # All of the files that will serve via GitHub pages
│ ├── custom-docs
| | └── description.md # Markdown file containing custom documentation for the API
│ ├── openapi
| | ├── definition # **Auto-generated** YAML files for the OpenAPI definition
| | └── openapi.json # JSON OpenAPI definition that is just used to generate the YAML definitions
│ ├── favicon.ico
│ └── index.html # HTML page for the site on GitHub pages (not used locally)
├── scripts # NPM scripts
├── .redocly.yaml # Redocly configuration file
├── LICENSE
└── README.md
Just submit a issue if you need any help. And, of course, feel free to submit pull requests with bug fixes or changes.