Files
supermarket-api/Makefile
T
david 336b21a835 Initial bootrap of application
- Creates scaffold for router and server
- Main program set up for environment, OS signal listener
- Makefile generic commands
2021-06-17 17:06:21 -04:00

21 lines
238 B
Makefile

dev:
docker-compose up
unit-test:
go test -short ./...
integration-test:
go test -integration ./...
all-test:
go test ./...
build:
go build -o supermarket-api cmd/api/*.go
run:
go run cmd/api/*.go
clean:
rm ./supermarket-api