Skip to content
Oeiuwq Faith Blog OpenSource Porfolio

vic/swagger-elixir

Generate client and (plug) server code in elixir from a swagger api spec.

vic/swagger-elixir.json
{
"defaultBranch": "master",
"description": "Generate client and (plug) server code in elixir from a swagger api spec.",
"fullName": "vic/swagger-elixir",
"homepage": "",
"language": "Elixir",
"name": "swagger-elixir",
"pushedAt": "2016-06-13T08:26:53Z",
"stargazersCount": 9,
"updatedAt": "2021-10-07T22:35:42Z",
"url": "https://github.com/vic/swagger-elixir"
}

Work in progress

Generate elixir client/server implementation from a swagger spec file.

If available in Hex, the package can be installed as:

  1. Add swagger to your list of dependencies in mix.exs:
def deps do
[{:swagger, "~> 0.0.1"}]
end
  1. Ensure swagger is started before your application:
def application do
[applications: [:swagger]]
end