first commit

This commit is contained in:
2024-06-14 23:02:39 -04:00
commit b7f9a3e459
8 changed files with 131 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
build: db.sqlite3
go build dbtest.go
run: db.sqlite3
go run dbtest.go
db.sqlite3: migrations/*.sql
cat migrations/*.sql | sqlite3 db.sqlite3
all: build db.sqlite3
.PHONY: all build run