| name | replit-prod-checklist |
| description | Execute Replit production deployment checklist with rollback and health monitoring.
Use when deploying Replit apps to production, preparing for launch,
or implementing go-live procedures with Autoscale or Reserved VM.
Trigger with phrases like "replit production", "deploy replit",
"replit go-live", "replit launch checklist", "replit prod ready".
|
| allowed-tools | Read, Bash(curl:*), Grep |
| version | 1.12.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","replit","deployment","production"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Replit Production Checklist
Overview
Complete checklist for deploying Replit apps to production using Autoscale or Reserved VM deployments. Covers configuration, secrets, health checks, custom domains, rollback procedures, and monitoring.
Prerequisites
- Replit Core, Pro, or Teams plan (deployment access)
- App tested and working in Workspace
- PostgreSQL database provisioned (if needed)
- Custom domain (optional) with DNS access
Production Deployment Checklist
Phase 1: Configuration
[deployment]
run = ["sh", "-c", "npm start"]
build = ["sh", "-c", "npm ci --production && npm run build"]
deploymentTarget = "autoscale"
Phase 2: Secrets
const REQUIRED = ['DATABASE_URL', 'JWT_SECRET'];
missing = .( !process.[k]);
(missing.) {
.();
process.();
}