05ed037fe8
- DNS: pilot.landvex.com -> 16.170.83.169 - TLS: Let's Encrypt certificate (expires 2026-09-30) - Nginx: reverse proxy with SSL termination - API: https://pilot.landvex.com/api/v1/missions - UI: https://pilot.landvex.com/ - Upload: POST /api/v1/missions/import (multipart/form-data) Verified: ✅ https://pilot.landvex.com/health ✅ https://pilot.landvex.com/version ✅ https://pilot.landvex.com/api/v1/missions (list) ✅ https://pilot.landvex.com/api/v1/missions/:id (get) ✅ POST /api/v1/missions/import (video upload) ✅ UI loads with title 'LandveX Intelligence Lab' Next: Pilot 001 — Break the system!
46 lines
1.4 KiB
TOML
46 lines
1.4 KiB
TOML
[workspace]
|
|
members = [
|
|
"crates/aamos-core",
|
|
"crates/aamos-db",
|
|
"crates/aamos-auth",
|
|
"crates/aamos-audit",
|
|
"crates/aamos-ledger",
|
|
"crates/aamos-sie4",
|
|
"crates/aamos-reports",
|
|
"crates/aamos-bank-import",
|
|
"crates/aamos-tax",
|
|
"crates/aamos-payroll",
|
|
"crates/aamos-api",
|
|
"crates/aamos-hermes",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
axum = { version = "0.7", features = ["macros"] }
|
|
tower = "0.5"
|
|
tower-http = { version = "0.6", features = ["cors", "trace", "compression-br"] }
|
|
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "uuid", "chrono", "json", "migrate", "bigdecimal"] }
|
|
jsonwebtoken = "9.3"
|
|
uuid = { version = "1.11", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
thiserror = "2.0"
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
dotenvy = "0.15"
|
|
bigdecimal = { version = "0.4.10", features = ["serde"] }
|
|
async-trait = "0.1"
|
|
redis = { version = "0.27", features = ["tokio-comp"] }
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
garde = "0.20"
|
|
validator = { version = "0.19", features = ["derive"] }
|
|
metrics = "0.24"
|
|
metrics-exporter-prometheus = "0.16"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|