Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Latest commit

 

History

History
47 lines (26 loc) · 2.19 KB

swagger-about.md

File metadata and controls

47 lines (26 loc) · 2.19 KB

About swagger

What is Swagger?

Swagger™ is a specification and framework implementation for describing, producing, consuming, and visualizing RESTful web services.

To read more about Swagger, refer to:

How does the swagger module use Swagger?

The Swagger Editor lets you design your API specification and preview its documentation for your swagger API. The editor is installed with swagger.

A swagger.yaml file is installed into every new swagger project, and lives in <project_root>/api/swagger/swagger.yaml. It conforms to the OpenAPI 2.0 Specification.

Behind the scenes, Swagger middleware validates and processes the Swagger configuration file, and routes API operation endpoints to controller files. All you need to do is implement your custom API controller logic.

Note: The editor is served locally and automatically saves your work as you edit. In addition, if the project is running (swagger project start), it is automatically restarted each time the editor saves. Just be careful if you kill the editor, that you do not lose unsaved work.

Try it:

  1. swagger project create test-project
  2. cd test-project
  3. swagger project edit

The Swagger editor alt text

Help me with YAML

YAML is a data serialization/representation standard. If you're new to YAML, check out www.yaml.org. Another excellent introduction is the Wikipedia YAML entry.

YAML is intended to be easy for humans to read. Every swagger project includes a Swagger 2.0 compliant configuration file that is written in YAML.

Next step

For a more detailed look the Swagger configurations, see "The OpenAPI Specification file".