bill-server-go/Makefile

13 lines
193 B
Makefile
Raw Permalink Normal View History

2023-05-05 20:27:33 +08:00
.PHONY: start
start:
2023-06-10 18:46:48 +08:00
docker compose up -d --build
2023-05-05 20:27:33 +08:00
.PHONY: stop
stop:
2023-06-10 18:46:48 +08:00
docker compose rm -v --force --stop
docker image rm bill-server:latest
2023-05-05 20:27:33 +08:00
.PHONY: test
test:
sh ./scripts/e2e-testing.sh