init
This commit is contained in:
commit
ef105e1cac
22 changed files with 3001 additions and 0 deletions
21
Makefile
Normal file
21
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue