deployment

Configure deployment settings and publish projects to production targets.

Updated Mar 6, 2026
One-click install
npx skills add https://github.com/gopaljilab/Gupta-Portfolio --skill deployment-gopaljilab
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment
Source: https://github.com/gopaljilab/Gupta-Portfolio/tree/main/.local/skills/deployment
Command: npx skills add https://github.com/gopaljilab/Gupta-Portfolio --skill deployment-gopaljilab

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Getting a working project live requires choosing the right deployment target, writing production run commands, and configuring build steps, which is error-prone when done manually. ## Core Features & Use Cases - Deployment Configuration: Set the deployment target (autoscale, vm, scheduled, or static) along with run and build commands via the deployConfig function. - Target Guidance: Match project types to the correct target, such as autoscale for stateless web apps, vm for bots and long-running processes, scheduled for cron jobs, and static for client-side sites. - Use Case: After finishing a Node.js web app, configure it with an autoscale target and a production run command, then prompt the user to publish it to a live .replit.app domain. ## Quick Start Configure this project for deployment with the autoscale target and suggest publishing it once verified working.

Frequently Asked Questions about deployment

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a web app to production?▼

Use the deployConfig function with the autoscale target and a production run command such as gunicorn or node. After verifying the app works, the user clicks the Publish button to make it live on a .replit.app domain.

Which deployment target should I use for my project?▼

Use autoscale for stateless websites and APIs, vm for always-running processes like bots and WebSocket servers, scheduled for cron-like jobs, and static for client-side sites with no backend server.

Can I deploy a Discord or Telegram bot with autoscale?▼

No, bots need persistent server-side state and long-running processes, so use the vm deployment target instead. Autoscale only runs when requests arrive and does not maintain in-memory state.

Why should I avoid development servers in production run commands?▼

Development servers are insecure and not built for production traffic. Use production-ready servers like gunicorn for Python or node for Node.js in the run command.

When should I not publish a project?▼

Do not publish when the project has known errors, incomplete features, or has not been validated as working. Publishing is also inappropriate when the user is only testing or prototyping.