Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 691 Bytes

File metadata and controls

35 lines (24 loc) · 691 Bytes

(WIP) Sandbox REST API with Golang

  • Session authentication with postgres using cookie (not JWT)

Notes

Requirements

brew install golang-migrate
go install github.com/cespare/reflex@latest
go install github.com/volatiletech/sqlboiler/v4@latest
go install github.com/volatiletech/sqlboiler/v4/drivers/sqlboiler-psql@latest

How to Run

make postgres
make resetdb
make devw

Create Migration File

migrate create -ext sql --dir db/migrations -seq NAME

References