deploy
Use this skill when the user needs to deploy their app, choose a hosting provider, connect a custom domain, set up environment variables, manage a production database, configure DNS, or go from 'it works locally' to 'it's live on the internet.' Covers hosting selection, deployment workflows, domain setup, and production operations for non-technical founders.
What this skill does
# Deployment & Going Live The gap between "it works on my screen" and "anyone can use it" feels enormous. It's not. This skill walks you through choosing a host, deploying, connecting a domain, and setting up backups — step by step. **This skill is for deployment and hosting.** For pre-launch quality checks, use **go-live**. For monitoring after deploy, use **monitor**. For database setup, use **database**. For security hardening, use **secure**. ## Core Principles - The best hosting platform is the one that matches how you built. Don't migrate unless you have to. - Managed beats self-managed every time for solo founders. Pay more, worry less. - Your first deployment should take under 30 minutes. If it's taking hours, you're overcomplicating it. - Custom domains are not optional for a real business. yourapp.vercel.app is not professional. - Backups are not optional. If you don't have them, you don't have a business. ### Don't Do Yet - **Don't set up Kubernetes, Docker Swarm, or "infrastructure as code."** Managed platforms handle this. You're shipping a product, not building a data center. - **Don't set up a staging environment** until you have paying users. Deploy straight to production. You can add staging later. - **Don't optimize for scale** before you have traffic. A $5/month Railway plan handles thousands of users. Worry about scaling when it becomes a real problem. - **Don't self-host your database.** Use a managed service (Supabase, Railway Postgres, PlanetScale). Self-hosting means you're on call for backups, upgrades, and outages. ## Choose Your Hosting ### If You Built With These Tools | Built With | Deploy To | Why | |-----------|-----------|-----| | **Lovable** | Lovable's built-in hosting | Already deployed. Just connect your domain. | | **Replit** | Replit Deployments | One-click deploy from your Repl. Built in. | | **Bolt / Stackblitz** | Netlify or Vercel | Export code, connect git repo, auto-deploys. | | **Claude Code (Next.js, React)** | Vercel | Built for Next.js. Git push = deploy. | | **Claude Code (any framework)** | Railway | Supports everything. Simple dashboard. | | **Claude Code (static site)** | Netlify or Cloudflare Pages | Free tier is generous. Fast global CDN. | | **Claude Code (Python/Django/Flask)** | Railway or Render | Good Python support with managed databases. | ### Hosting Comparison for Solo Founders | Platform | Free Tier | Ease | Database | Custom Domain | Best For | |----------|-----------|------|----------|---------------|----------| | **Vercel** | Generous | Very easy | No (use Supabase) | Yes | Next.js, React apps | | **Railway** | $5 credit/mo | Easy | Yes (Postgres) | Yes | Full-stack apps, any framework | | **Netlify** | Generous | Very easy | No | Yes | Static sites, JAMstack | | **Render** | Free tier | Easy | Yes (Postgres) | Yes | Full-stack, background jobs | | **Fly.io** | Limited free | Moderate | Yes (Postgres) | Yes | Global distribution, Docker | | **Cloudflare Pages** | Very generous | Easy | No (use D1 or Supabase) | Yes | Static sites, edge functions | | **Replit** | Included | Easiest | Yes (built-in) | Yes | Apps built in Replit | | **Lovable** | Included | Easiest | Yes (Supabase) | Yes | Apps built in Lovable | **Recommendation for most solo founders:** Vercel (for Next.js) or Railway (for everything else). --- ## Deployment: Step by Step ### Path 1: Lovable / Replit (Already Deployed) Your app is already running. You just need a custom domain: 1. Buy a domain (Namecheap, Cloudflare, or Google Domains) 2. In your Lovable/Replit dashboard, go to Settings → Custom Domain 3. Add your domain name 4. Update DNS records at your domain registrar (they'll tell you what to add) 5. Wait 5-30 minutes for DNS propagation 6. SSL certificate is automatic — your site will be HTTPS ### Path 2: Vercel (Next.js / React) ``` Deployment Checklist — Vercel: - [ ] Push your code to a GitHub repository - [ ] Go to vercel.com → "Add New Project" - [ ] Connect your GitHub repo - [ ] Vercel auto-detects framework and configures build settings - [ ] Add environment variables (Settings → Environment Variables) - [ ] Click "Deploy" - [ ] Connect custom domain (Settings → Domains) - [ ] Update DNS (Vercel gives you the records) - [ ] Verify HTTPS is working ``` **Tell AI:** ``` Help me deploy my Next.js app to Vercel. My app uses: - Framework: [Next.js version] - Database: [Supabase/PlanetScale/etc.] - Environment variables I need: [list them] Walk me through the steps and tell me what environment variables to set in the Vercel dashboard. ``` ### Path 3: Railway (Any Framework) ``` Deployment Checklist — Railway: - [ ] Push code to GitHub repository - [ ] Go to railway.app → "New Project" - [ ] Choose "Deploy from GitHub Repo" - [ ] Select your repo - [ ] Add environment variables in the Railway dashboard - [ ] If you need a database: click "New" → "Database" → "PostgreSQL" - [ ] Railway gives you a DATABASE_URL — add it to your app's env vars - [ ] Click "Deploy" - [ ] Connect custom domain (Settings → Networking → Custom Domain) - [ ] Update DNS records ``` --- ## Environment Variables Environment variables store secrets (API keys, database passwords) that should never be in your code. ### What Goes in Environment Variables ``` Common Environment Variables: DATABASE_URL=postgresql://user:password@host:5432/dbname STRIPE_SECRET_KEY=sk_live_... STRIPE_PUBLISHABLE_KEY=pk_live_... STRIPE_WEBHOOK_SECRET=whsec_... NEXT_PUBLIC_SUPABASE_URL=https://xxx.supabase.co SUPABASE_SERVICE_ROLE_KEY=eyJ... EMAIL_API_KEY=re_... NEXTAUTH_SECRET=random-string-here NEXTAUTH_URL=https://yourdomain.com NODE_ENV=production ``` ### Rules - **Never commit secrets to git.** Add `.env` and `.env.local` to `.gitignore`. - **Each environment (dev/staging/prod) has its own variables.** Don't share them. - **Use your hosting platform's dashboard** to set production variables. Not a file on a server. - **Rotate keys if you accidentally commit them.** Immediately. Git history preserves secrets even if you delete the file. **Tell AI:** ``` List all the environment variables my app needs for production deployment. My app uses: [list your services — Supabase, Stripe, email provider, etc.] Show me which ones are public (safe for client-side) and which are secret (server-only). ``` --- ## Custom Domains ### Buying a Domain - **Namecheap** or **Cloudflare Registrar** — cheapest, no markup - Get a `.com` if possible. `.io` and `.co` are fine for SaaS - Avoid hyphens, numbers, and hard-to-spell names - Budget: $10-15/year for a .com ### DNS Setup Your hosting platform will tell you exactly which DNS records to add. Typical setup: | Record Type | Name | Value | Purpose | |------------|------|-------|---------| | A | @ | 76.76.21.21 (example) | Points root domain to host | | CNAME | www | cname.vercel-dns.com (example) | Points www to host | **Where to add DNS records:** Log in to wherever you bought your domain (Namecheap, Cloudflare, etc.) → DNS Settings → Add the records your hosting platform gives you. **DNS propagation** takes 5 minutes to 48 hours (usually under 30 minutes). Be patient. **Tell AI:** ``` I bought a domain on [Namecheap/Cloudflare/Google Domains] and I'm hosting on [Vercel/Railway/Netlify]. Walk me through connecting the domain step by step. Tell me exactly which DNS records to add and where. ``` ### SSL / HTTPS - Every modern hosting platform provides free SSL certificates automatically - If your site shows "Not Secure" after connecting a domain, wait 30 minutes for SSL to provision - If it still doesn't work after an hour, check that your DNS records are correct --- ## Database in Production ### If You're Using Supabase Supabase is already hosted. Your production app connects to the same Supabase project (or a separate one for production): ``` Production Database Checklist — Supabase: - [ ] Create a separate Supabase project for production (don't share with dev) - [ ] Run your migratio
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.