replit-deploy-integration

Featured

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

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 Deploy Integration ## Overview Deploy applications on Replit's hosting platform. Three deployment types: Static (free, frontend-only), Autoscale (scales to zero, pay per request), and Reserved VM (always-on, fixed cost). Includes custom domain setup, health checks, rollbacks, and deployment monitoring. ## Prerequisites - Replit Core, Pro, or Teams plan (deployment access) - Application working in Workspace ("Run" button) - Custom domain (optional) with DNS access ## Deployment Types | Type | Best For | Pricing | Scale | |------|----------|---------|-------| | **Static** | HTML/CSS/JS frontends | Free | CDN-backed, auto-cached | | **Autoscale** | Variable traffic APIs | Per request | 0 to N instances | | **Reserved VM** | Always-on services | $0.20+/day | Fixed resources | ## Instructions ### Step 1: Configure `.replit` for Deployment ```toml # .replit — Autoscale deployment (most common) entrypoint = "src/index.ts" run = "npx tsx src/index.ts" [nix] channel = "stable-24_05" [env] NODE_ENV = "production" [deployment] run = ["sh", "-c", "npx tsx src/index.ts"] build = ["sh", "-c", "npm ci --production && npm run build"] deploymentTarget = "autoscale" ``` **Reserved VM:** ```toml [deployment] run = ["sh", "-c", "node dist/index.js"] build = ["sh", "-c", "npm ci && npm run build"] deploymentTarget = "cloudrun" ``` **Static:** ```toml [deployment] deploymentTarget = "static" publicDir = "dist" build = ["sh", "-c", "npm ci && npm run build"] ``` ### Step 2: Con...

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-prod-checklist

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

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

replit-local-dev-loop

Configure Replit development workflow with hot reload, Webview, and Replit Agent. Use when setting up dev server, configuring run commands, debugging in Workspace, or using Replit Agent for AI-assisted development. Trigger with phrases like "replit dev server", "replit hot reload", "replit local development", "replit agent", "replit workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-load-scale

Load test and scale Replit deployments with Autoscale tuning, Reserved VM sizing, and capacity planning. Use when load testing Replit apps, optimizing Autoscale behavior, or planning capacity for production traffic. Trigger with phrases like "replit load test", "replit scale", "replit capacity", "replit performance test", "replit autoscale tuning".

2,266 Updated today
jeremylongshore
AI & Automation Featured

replit-ci-integration

Configure CI/CD for Replit with GitHub Actions, automated testing, and deploy-on-push. Use when setting up automated testing, GitHub integration for Replit, or continuous deployment pipelines that deploy to Replit. Trigger with phrases like "replit CI", "replit GitHub Actions", "replit automated deploy", "CI replit", "replit GitHub".

2,266 Updated today
jeremylongshore