redaction / Makefile
gni
feat: implement project orchestration via Makefile and update legal metadata
5881b67
raw
history blame contribute delete
678 Bytes
.PHONY: help build up down logs test clean
# Default target
help:
@echo "🛡️ Redac Management Commands:"
@echo " make build - Build all Docker containers"
@echo " make up - Start the project in the background"
@echo " make down - Stop and remove containers"
@echo " make logs - Follow the logs"
@echo " make test - Run the API test suite"
@echo " make clean - Remove unused Docker images and volumes"
build:
docker compose build
up:
docker compose up -d
down:
docker compose down
logs:
docker compose logs -f
test:
docker compose run --rm api python tests/verify_all.py
clean:
docker system prune -f
docker volume prune -f