package
0.0.0-20191002105309-2204bf02b581
Repository: https://github.com/gowroc/meetups.git
Documentation: pkg.go.dev
# README
Slides and code from my "Using SQL in Go, or how I learned to program without ORMs" talk.
Running tests
- Start dockerized postgresql using
make postgres-start
, - Ensure you have
goose
andgo-bindata
:make go-get
(for some reasongoose
will not work with go1.8 and macOS, you need go1.8.1), - Run up migrations:
make db-up
, - Run tests:
make test
.