Initial commit with 2026 World Cup Quant Platform core modules and CI/CD

This commit is contained in:
QuantBot
2026-06-13 23:18:18 +08:00
commit 073abf98c1
155 changed files with 19539 additions and 0 deletions

25
Makefile Normal file
View File

@@ -0,0 +1,25 @@
.PHONY: up down logs db-shell test build deploy redis-cli
up:
docker-compose up -d
down:
docker-compose down
logs:
docker-compose logs -f
db-shell:
docker-compose exec fifa2026-postgres psql -U fifa_user -d fifa2026
redis-cli:
docker-compose exec fifa2026-redis redis-cli
test:
docker-compose exec fifa2026-backend pytest app/analytics/ -v
build:
docker-compose -f docker-compose.prod.yml build --no-cache
deploy:
docker-compose -f docker-compose.prod.yml up -d