replit-prod-checklist

Featured

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".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 - [ ] `.replit` deployment section configured: ```toml [deployment] run = ["sh", "-c", "npm start"] build = ["sh", "-c", "npm ci --production && npm run build"] deploymentTarget = "autoscale" # or "cloudrun" for Reserved VM ``` - [ ] `replit.nix` includes only required system packages (trim dev-only deps) - [ ] `NODE_ENV` set to `"production"` in `.replit` env section - [ ] Port reads from `process.env.PORT` ### Phase 2: Secrets - [ ] All secrets configured in Replit Secrets tab - [ ] Secrets sync enabled (Workspace <-> Deployment) - [ ] No hardcoded credentials in source code - [ ] Startup validates all required secrets: ```typescript const REQUIRED = ['DATABASE_URL', 'JWT_SECRET']; const missing = REQUIRED.filter(k => !process.env[k]); if (missing.length) { console.error(`FATAL: Missing secrets: ${missing.join(', ')}`); process.exit(1); } ``` ### Phase 3: Health Check - [ ] `/health` endpoint exists and checks dependencies: ```typescript app.get('/health', async (req, ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

replit-deploy-integration

Deploy Replit apps with Autoscale, Reserved VM, and Static deployment types. Use when deploying to production, configuring deployment settings, setting up custom domains, or managing deployment secrets and health checks. Trigger with phrases like "deploy replit", "replit deployment", "replit autoscale", "replit reserved VM", "replit static deploy", "replit custom domain".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-observability

Monitor Replit deployments with health checks, uptime tracking, resource usage, and alerting. Use when setting up monitoring for Replit apps, building health dashboards, or configuring alerting for deployment health and performance. Trigger with phrases like "replit monitoring", "replit metrics", "replit observability", "monitor replit", "replit alerts", "replit uptime".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-prod-checklist

Execute Klaviyo production deployment checklist and validation procedures. Use when deploying Klaviyo integrations to production, preparing for launch, or implementing go-live procedures for email/SMS marketing. Trigger with phrases like "klaviyo production", "deploy klaviyo", "klaviyo go-live", "klaviyo launch checklist", "klaviyo prod ready".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-core-workflow-a

Build a full-stack web app on Replit with Express/Flask, PostgreSQL, Auth, and deployment. Use when creating a new production app on Replit from scratch, building the primary user-facing workflow, or following Replit best practices. Trigger with phrases like "build replit app", "replit full stack", "replit web app", "create replit project", "replit express flask".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flyio-prod-checklist

Execute Fly.io production deployment checklist with health checks, auto-scaling, monitoring, and rollback procedures. Trigger: "fly.io production", "fly.io go-live", "fly.io prod checklist".

2,266 Updated today
jeremylongshore