Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
561 changes: 105 additions & 456 deletions .github/workflows/cicd.yml

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help start stop dev services migrate test clean
.PHONY: help start stop dev services migrate test clean validate

help: ## Show this help message
@echo "TelemetryTaco Development Commands"
Expand Down Expand Up @@ -67,9 +67,10 @@ clean: stop ## Stop services and clean up logs
@echo "✅ Cleaned up"

test: ## Run tests
@echo "🧪 Running tests..."
cd backend && poetry run python manage.py test
cd frontend && pnpm test || true
@pnpm test

validate: ## Run backend, frontend, and SDK validation
@pnpm validate:all

seed: ## Seed database with historical event data
@echo "📊 Seeding database..."
Expand Down
Loading
Loading