taskfile

Monorepo Microservices — Platforms, Conditions, Working Dirs

4 mikroserwisy (web, api, worker, mobile-bff) w monorepo z platformami i pipeline.

Features covered

Usage

# Lint/test all (parallel)
taskfile run lint-all
taskfile run test-all

# Build + push all images
taskfile run build-all push-all --var TAG=v1.0.0

# Deploy
taskfile --env local run deploy-local
taskfile --env staging run deploy-staging --var TAG=v1.0.0
taskfile --env prod run deploy-prod --var TAG=v1.0.0

# Per-service
taskfile run test-api
taskfile run build-web --var TAG=v1.0.0

# Database
taskfile run db-migrate
taskfile run db-rollback

# CI pipeline
taskfile ci generate --target github
taskfile ci run --stage test