Files
boc/aamos-ledger-rust/.sqlx/query-ebdaafc67b28bd7ede942f16ace5652249d79dd2eb8c14c8811dc3adb81b833c.json
T
Bernt 05ed037fe8 pilot.landvex.com: HTTPS + Full Stack Verified
- 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!
2026-07-02 17:34:19 +00:00

24 lines
713 B
JSON

{
"db_name": "PostgreSQL",
"query": "\n SELECT COALESCE(SUM(l.debit), 0) - COALESCE(SUM(l.credit), 0) as net_amount\n FROM ledger_journal_lines l\n JOIN ledger_journal_entries e ON e.id = l.entry_id\n WHERE e.tenant_id = $1\n AND e.period = $2\n AND e.status = 'posted'\n AND l.account_number = '2640'\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "net_amount",
"type_info": "Numeric"
}
],
"parameters": {
"Left": [
"Text",
"Text"
]
},
"nullable": [
null
]
},
"hash": "ebdaafc67b28bd7ede942f16ace5652249d79dd2eb8c14c8811dc3adb81b833c"
}