Adds accounting-service PATCH/archive, fiscal helpers, COA templates and setup status, plus SuperApp Accounting UI (DS, scoreboard, masters, vouchers, ledger, ops modules) with session refresh and HTTPS public API URLs. Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
705 B
Markdown
26 lines
705 B
Markdown
# Restore
|
|
|
|
## Postgres Restore (example)
|
|
|
|
```bash
|
|
pg_restore -d core_platform_db --clean --if-exists core_platform_db.dump
|
|
pg_restore -d identity_access_db --clean --if-exists identity_access_db.dump
|
|
```
|
|
|
|
Adapt flags to the dump format used in [backup.md](backup.md).
|
|
|
|
## Application Restore Steps
|
|
|
|
1. Stop writers (scale down workers / APIs) if restoring in place
|
|
2. Restore databases
|
|
3. Restore env/secrets if needed
|
|
4. Start services on the target release tag
|
|
5. Verify health, login, tenant resolution
|
|
6. Reconcile SSL map / certs if edge host was replaced
|
|
|
|
## Related Documents
|
|
|
|
- [Backup](backup.md)
|
|
- [Disaster Recovery](disaster-recovery.md)
|
|
- [Production](production.md)
|