-
Notifications
You must be signed in to change notification settings - Fork 0
Deployment Guide
Karthik edited this page Mar 1, 2026
·
1 revision
cd infrastructure/cdk
cdk bootstrap aws://<ACCOUNT_ID>/<REGION>
cdk deploy --all- Validate AWS credentials/profile.
- Confirm target account/region.
- Review stack diffs.
- Deploy in controlled order when needed.
- Record outputs required by frontend and dependent services.
- Update frontend config/env from stack outputs.
- Run smoke tests on core APIs and auth.
- Verify dashboards and alerts for each role.
- Prefer stack-level rollback for failed changes.
- Re-deploy last known good infrastructure commit.
- Keep migration/data-impact steps isolated and reversible.
- Use GitHub Actions workflows in
.github/workflows/. - Gate production deployment on tests and manual approvals where required.
Last updated: 2026-03-01