This commit is contained in:
Pavel Flegr 2026-04-08 17:53:30 +02:00
commit ef105e1cac
22 changed files with 3001 additions and 0 deletions

21
Makefile Normal file
View file

@ -0,0 +1,21 @@
APP_NAME=superbanka
.PHONY: dev up down tidy test migrate
dev:
go run ./cmd/web
up:
docker compose up -d
down:
docker compose down
tidy:
go mod tidy
test:
go test ./...
migrate:
go run ./cmd/web