Initial commit with 2026 World Cup Quant Platform core modules and CI/CD
This commit is contained in:
25
Makefile
Normal file
25
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user