apps/leads implemented its own, independent "lead request" system (POST /api/leads, /api/lead-requests/send, accept/reject) with a schema that never matched the live one (message vs remarks, no professional_user_id, accepted_at/rejected_at instead of resolved_at — see 20260721030000_create_lead_requests's commit message). Confirmed unreachable: the frontend's live flows use apps/customers' /api/customers/requirements and each profession's /leads/request (crates/contracts::profession_shared), never anything under apps/leads' own paths. Its /api/lead-requests/* endpoints weren't even reachable through the gateway (wrong prefix, never matched /api/leads or /api/admin/leads). Removed: - apps/leads/ entirely, and its Cargo.toml workspace membership - the `leads` docker-compose service, its LEADS_SERVICE_URL env var on gateway, and gateway's depends_on entry - the `leads` entry from both CI build matrices (.gitea/.forgejo) - gateway's leads_url field/routing branch — gateway no longer hard- requires LEADS_SERVICE_URL to boot (.expect() would have panicked once the service was gone); /api/admin/leads now falls through to the customers service, which already had a matching (previously shadowed) branch for it NOTE: this service may still have a live Deployment/Service in nxtgauge-gitops (a separate repo not touched here) — that manifest should be removed too, or the next deploy will reference an image that no CI job builds anymore.
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"apps/gateway",
|
|
"apps/users",
|
|
"apps/photographers",
|
|
"apps/tutors",
|
|
"apps/companies",
|
|
"apps/job_seekers",
|
|
"apps/customers",
|
|
"apps/makeup_artists",
|
|
"apps/developers",
|
|
"apps/video_editors",
|
|
"apps/graphic_designers",
|
|
"apps/social_media_managers",
|
|
"apps/fitness_trainers",
|
|
"apps/catering_services",
|
|
"apps/ugc_content_creators",
|
|
"crates/contracts",
|
|
"crates/db",
|
|
"crates/auth",
|
|
"crates/storage",
|
|
"crates/cache",
|
|
"crates/email",
|
|
"apps/cron",
|
|
"apps/employees",
|
|
"apps/payments",
|
|
"apps/jobs",
|
|
"crates/db-migrate"
|
|
]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "Proprietary"
|
|
authors = ["NXTGAUGE Team"]
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1"
|
|
axum = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
tonic = "0.12"
|
|
prost = "0.13"
|
|
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json"] }
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
lettre = { version = "0.11", default-features = false, features = ["tokio1-rustls-tls", "smtp-transport", "builder", "serde"] }
|
|
redis = { version = "0.27", features = ["tokio-comp", "connection-manager"] }
|
|
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
|
|
async-trait = "0.1"
|
|
bytes = "1"
|
|
tower-http = "0.6"
|
|
regex = "1"
|
|
printpdf = "0.7"
|