Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autogenerate OpenAPI spec #6

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Autogenerate OpenAPI spec #6

wants to merge 5 commits into from

Conversation

imranismail
Copy link
Owner

@imranismail imranismail commented Jul 8, 2019

A working proof of concept for #4

# /config/config.exs
config :watchtower, Watchtower.Spec,
  router: Watchtower.Router

# /lib/watchtower/spec.ex
defmodule Watchtower.Spec do
  use Parameters.OAS3,
    otp_app: :watchtower,
    info: [
      title: "Watchtower API Spec",
      version: "1.0.0",
    ],
    content_types: [
      api: "application/json"
    ],
    accepts: [
      api: "application/json"
    ]
end

Screen Shot 2019-07-09 at 2 51 06 AM

@imranismail imranismail changed the title Feature/open api Autogenerate OpenAPI spec Jul 8, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant