- Create jobs service (port 9103) for job postings management
- Create leads service (port 9118) for lead/requirement management
- Update gateway to route /api/jobs to jobs service
- Update gateway to route /api/leads to leads service
- Add jobs and leads to Woodpecker CI matrix
- Create db-migrate binary that runs all .up.sql migration files
- Add Dockerfile.migrate for building the migration image
- Add migration job to Woodpecker CI pipeline
- Image will be pushed to registry.nxtgauge.com:5000/nxtgauge-db-migrate
- Use REGISTRY_HOSTPORT for registry (not docker.io or ghcr.io)
- Use REGISTRY_USERNAME/REGISTRY_PASSWORD for auth
- Fix repo path to not include full URL or username prefix
- Update all woodpecker files to use internal registry
- Use Docker Hub credentials for base image pulls
- Add cache_from/cache_to for internal registry caching
- Remove GitHub Container Registry dependency
- Replace complex caching with simple Dockerfile
- Remove cargo-chef complexity that was slowing builds
- Add .woodpecker-base.yml for separate base image builds
- Add Dockerfile.simple for faster builds
- Add Dockerfile.ultrafast for when base image exists
- Add Dockerfile.fast with cargo-chef and symbol stripping
- Add Dockerfile.superfast using pre-built base image
- Add Dockerfile.base for dependency caching
- Update Woodpecker with registry cache (cache_from/cache_to)
- Add fast-build.sh for local ultra-fast builds
- Add build-base-image.sh for one-time dependency build
- Enable BuildKit layer caching in CI
- Update .woodpecker.yml with change detection step
- Add optimized Dockerfile.optimized support
- Add deployment step to Kubernetes
- Add woodpecker-local-build.sh for local testing
- Only build and deploy services with code changes
- Skip unchanged services for faster pipelines
- Add Dockerfile.optimized with cargo-chef caching
- Add build-changed.sh script to build only modified services
- Add deploy-changed.sh script for selective deployment
- Add comprehensive deployment optimization guide
- Support independent service rollouts (no full redeploy needed)