No description
Find a file
Ashwin Kumar b4f714f43f feat(emails): complete email system with 35 branded templates and full wiring
- Add 35 branded HTML email templates with Nxtgauge styling

- Create email template engine with base template system

- Add email management API for admin panel

- Wire email triggers from all services

- All services compile successfully
2026-04-10 04:49:39 +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(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +02:00
crates feat(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +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: improve startup and routing 2026-04-07 22:12:37 +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
docker-compose.yml feat(emails): complete email system with 35 branded templates and full wiring 2026-04-10 04:49:39 +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.