motiv-labs / janus

An API Gateway written in Go
https://hellofresh.gitbooks.io/janus
MIT License
2.79k stars 317 forks source link

Add postgres repository #313

Closed whisper-bye closed 6 years ago

whisper-bye commented 6 years ago

add postgres repository, for example

create table apis
(
    json jsonb
)
;

create table oauth
(
    json jsonb
)
;
[database]
  dsn = "postgres://postgres@localhost:5432/janus"