Initial commit: BtToxin Pipeline project structure
This commit is contained in:
21
Makefile
Normal file
21
Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
.PHONY: help dev build test clean
|
||||
|
||||
help:
|
||||
@echo "BtToxin Pipeline Commands:"
|
||||
@echo " make dev - Start development environment"
|
||||
@echo " make build - Build Docker images"
|
||||
@echo " make test - Run tests"
|
||||
@echo " make clean - Clean up"
|
||||
|
||||
dev:
|
||||
docker compose -f config/docker-compose.yml up -d
|
||||
|
||||
build:
|
||||
docker compose -f config/docker-compose.yml build
|
||||
|
||||
test:
|
||||
cd backend && pytest
|
||||
|
||||
clean:
|
||||
docker compose -f config/docker-compose.yml down -v
|
||||
rm -rf uploads/ results/ logs/
|
||||
Reference in New Issue
Block a user