This directory contains the control-plane for multi-user, hosted deployments of Rill.
- Create a
.env
file at the root of the repo containing:
RILL_ADMIN_ENV=development
RILL_ADMIN_DATABASE_DRIVER=postgres
RILL_ADMIN_DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres
RILL_ADMIN_PORT=8080
RILL_ADMIN_SESSIONS_SECRET=secret
RILL_ADMIN_AUTH_DOMAIN=gorillio-stage.auth0.com
RILL_ADMIN_AUTH_CALLBACK_URL=http://localhost:8080/auth/callback
# Get these from https://auth0.com/ (or ask a colleague)
RILL_ADMIN_AUTH_CLIENT_ID=
RILL_ADMIN_AUTH_CLIENT_SECRET=
- In a separate terminal, run Postgres in the background:
docker-compose -f admin/docker-compose.yml up
- Run the server:
go run admin/cmd/main.go
We define endpoints using OpenAPI and generate Go handlers and types using oapi-codegen. To add a new endpoint:
- Describe the new endpoint in
admin/api/openapi.yaml
- Make sure you have
oapi-codegen
installed by runninggo mod tidy
- Run:
go generate ./admin/api
- Copy the new handler(s) from
admin/api/server.gen.go
intoadmin/server/handlers.go
and implement it