44da0ee296
modified: docker-compose.yaml change profile to prod, add to kk_db kk profile
17 lines
247 B
Makefile
17 lines
247 B
Makefile
build:
|
|
@docker compose --profile prod build --no-cache
|
|
|
|
run: stop
|
|
@docker compose --profile prod up -d --remove-orphans
|
|
|
|
stop:
|
|
@docker compose --profile prod down
|
|
|
|
test:
|
|
@go test ./api/src/auth/... -v
|
|
|
|
tc:
|
|
@go test -cover
|
|
|
|
.DEFAULT_GOAL=run
|