No description
Find a file
Ashwin Kumar dbe1706a07 feat(deployment): add optimized build system for faster deployments
- 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)
2026-04-10 05:14:27 +02:00
.cargo fix: remove invalid build.rustdoc key from cargo config 2026-04-09 04:50:08 +02:00
.sqlx fix: add SQLx offline cache and SQLX_OFFLINE=true for Docker builds 2026-04-09 05:46:32 +02:00
apps feat(smtp): add SMTP management APIs and test functionality 2026-04-10 04:55:35 +02:00
crates feat(smtp): add SMTP management APIs and test functionality 2026-04-10 04:55:35 +02:00
docs chore: bootstrap rust backend workspace and migration master plan 2026-03-16 22:23:58 +01:00
load-tests feat(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +02:00
scripts feat(deployment): add optimized build system for faster deployments 2026-04-10 05:14:27 +02:00
tests fix: resolve all compilation warnings and errors across services 2026-04-07 12:52:55 +02:00
.env.example feat(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +02:00
.gitignore fix: track Cargo.lock (required for reproducible Docker builds) 2026-04-09 02:09:11 +02:00
.woodpecker.yml ci: trigger pipeline 2026-04-09 06:34:19 +02:00
cargo-deny.toml feat: extend admin/user flows with settings, verification, and approval updates 2026-04-08 22:40:54 +02:00
Cargo.lock feat(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +02:00
Cargo.toml feat: complete backend implementation - payments service, admin endpoints, auth guards, submit-for-verification for all roles 2026-04-06 06:19:10 +02:00
DEPLOYMENT_OPTIMIZATION.md feat(deployment): add optimized build system for faster deployments 2026-04-10 05:14:27 +02:00
docker-compose.yml feat(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +02:00
Dockerfile.optimized feat(deployment): add optimized build system for faster deployments 2026-04-10 05:14:27 +02:00
Dockerfile.template refactor: use Alpine Linux with static musl binaries for all services 2026-04-09 11:51:57 +02:00
gateway.pid feat: improve startup and routing 2026-04-07 22:12:37 +02:00
README.md chore: bootstrap rust backend workspace and migration master plan 2026-03-16 22:23:58 +01:00
start-services.sh feat: improve startup and routing 2026-04-07 22:12:37 +02:00
TESTING_STRATEGY.md fix: resolve all compilation warnings and errors across services 2026-04-07 12:52:55 +02:00
users.pid feat: improve startup and routing 2026-04-07 22:12:37 +02:00
wir.md docs: add work implementation roadmap (wir.md) 2026-04-06 22:26:45 +02:00

NXTGAUGE Backend Rust

Rust migration target for nxtgauge-nov-2025-backend, preserving the same microservices and request flow.

Target Service Topology

  • gateway (HTTP API)
  • users (identity, runtime roles, onboarding, approvals)
  • companies
  • customers
  • professionals
  • jobseekers

Migration Policy

  • Keep contracts stable (REST + proto semantics).
  • Keep runtime-config and onboarding schema behavior unchanged during parity phases.
  • Replace service implementations one by one.

See docs/MIGRATION_MASTER_PLAN.md for full staged plan.