first commit

This commit is contained in:
2026-06-22 14:31:01 +05:00
commit 109e01a656
35 changed files with 2120 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
.PHONY: run test up down migrate
run:
go run ./cmd/api
test:
go test ./...
up:
docker compose up --build
down:
docker compose down -v
migrate:
docker compose exec api /app/task-api -migrate