14 lines
157 B
Makefile
14 lines
157 B
Makefile
all:
|
|
|
|
upgrade:
|
|
go get -u ./...
|
|
|
|
tidy:
|
|
go mod tidy
|
|
|
|
startdb:
|
|
[ -f data/db/postmaster.pid ] || ./start-db.sh
|
|
|
|
stopdb: data/db/postmaster.pid
|
|
./stop-db.sh
|