feat: complete SOP execution workflow
This commit is contained in:
14
Makefile
14
Makefile
@@ -1,6 +1,6 @@
|
||||
WEB_DIR := web
|
||||
|
||||
.PHONY: web-install web-build build test vet check seed-pet-doctor
|
||||
.PHONY: web-install web-build build test vet check seed-pet-doctor docker-config docker-up docker-down docker-logs
|
||||
|
||||
web-install:
|
||||
cd $(WEB_DIR) && npm install
|
||||
@@ -21,3 +21,15 @@ check: test vet
|
||||
|
||||
seed-pet-doctor:
|
||||
go run ./scripts/seed-pet-doctor
|
||||
|
||||
docker-config:
|
||||
docker compose config --quiet
|
||||
|
||||
docker-up:
|
||||
docker compose up --build -d
|
||||
|
||||
docker-down:
|
||||
docker compose down
|
||||
|
||||
docker-logs:
|
||||
docker compose logs -f app nginx
|
||||
|
||||
Reference in New Issue
Block a user