diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1a37985 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +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