Release Procedures
SOPs • by System • 3/3/2026
sopsreleasedeploymentproduction
# Release Procedures
## Staging to Production
When releasing from staging to production:
### 1. Verify Staging
- Test all features work correctly
- Check for console errors
- Validate data integrity
### 2. Backup Production
- Always backup before releasing
- Use dated backup folders
### 3. Copy Build
- Copy staging build AS-IS (no rebuild)
- Update only environment variables
### 4. Verify Production
- Check API responds correctly
- Validate page loads
- Check console for errors
## Critical Ports
| Service | Port |
|---------|------|
| sardio-admin | 3008 |
| sardio-team | 3006 |
| client-hub | 3003 |
| sardio-sales | 3012 |
| daves-dash | 3010 |
## Rollback
If issues occur:
1. Stop the broken service
2. Restore from backup
3. Restart service
4. Verify recovery
## Never Do
- Do not rebuild in production
- Do not modify files after deployment
- Do not mix staging and production ports
- Do not skip verification