Deployment FAQ
Real questions from Cursor, Claude, and Lovable builders. Honest answers — including the uncomfortable ones.
Jump to section
The questions that stop people from clicking "Deploy My App".
That's exactly who this service is for. You never need to open the AWS Console after deployment. Your only action is git push — changes go live in 3–5 minutes automatically.
I leave you documentation written for developers, not DevOps engineers. AWS runs in the background. You keep shipping.
Short version: If you can use Cursor or Claude, you can use what I deliver.
Everything needed for a production-ready standard project:
A freelance DevOps engineer charges $800–2,000 for this scope. AWS Vibe Deploy delivers it in 48 hours for $497 — and the setup pays for itself in 3–4 months of AWS savings vs Vercel/Railway.
Standard ($497) — single server, single database, one app:
Complex ($797–$997) — scoped after the initial conversation:
Not sure which applies? Fill the form and describe your stack. I'll confirm scope within 2 hours — before any work starts.
For a prototype or MVP — use Vercel. It's faster to set up and perfectly fine for testing ideas.
AWS Vibe Deploy makes sense when:
The honest trade-off: 48h setup vs Vercel's 5-minute deploy. The payoff is ownership, no vendor lock-in, and ~10x lower monthly cost at moderate traffic.
I deploy infrastructure — the server, database, domain, SSL, and CI/CD pipeline. If your app runs locally and connects to a database correctly, it will run on my setup.
What I don't fix: bugs in your application logic, missing environment variables you forgot to tell me about, or code that never worked locally.
What I do fix during the support week: anything infrastructure-related — connectivity, SSL issues, deployment failures, server configuration.
Before going live with real users, a code review is recommended. I deploy what you provide — app security and business logic are your responsibility.
How deployment actually works under the hood.
Here's the exact process for deploying Docker Compose to AWS EC2:
docker-compose.yml for production (env vars, volumes, restart policies)mainOIDC (OpenID Connect) is the secure, keyless way to connect GitHub Actions to AWS. Here's what happens on every deployment:
This means even if your GitHub repo is compromised, there are no permanent credentials to steal. OIDC is the AWS-recommended best practice for CI/CD pipelines.
Yes — both App Router and Pages Router. The setup uses Next.js standalone output mode for optimal Docker performance:
output: 'standalone' to your next.config.js.next/standalone folder — minimal size.env on server or AWS Secrets ManagerTwo approaches depending on your setup:
Option 1 — .env file on server (simpler, standard projects):
.env file on the EC2 serverenv_file: .envOption 2 — AWS Secrets Manager (complex projects, higher security):
Never share actual secret values via chat. During setup, I'll send you secure instructions for entering them directly on the server.
Standard setup (Docker Compose on EC2):
Complex setup (Amazon RDS — scoped separately from $797):
Every deployment includes:
You need either access to your domain's DNS settings, or I can help you purchase a domain. Domain registration itself costs $10–15/year through a registrar — that's separate from the deployment fee.
Terraform is Infrastructure as Code — every AWS resource is defined in files, not clicked through a console. After deployment, your repo contains:
main.tf — EC2 instance, security groups, networkingvariables.tf — configurable parameters (instance type, region, etc.)outputs.tf — server IP, domain, ARNs.github/workflows/deploy.yml — CI/CD pipelinedocker-compose.yml — your app's container configurationnginx.conf — reverse proxy and SSL setupAny developer can read this code and understand your entire infrastructure. No black box. No dependency on me.
What happens between filling the form and getting your live URL.
The essentials:
Still writing code? Fill the form anyway — we can plan the deployment now and execute when your code is ready.
Yes, for standard projects. The clock starts when I have everything I need: repo access confirmed, stack verified, domain ready.
Most standard deployments are done in 24–36 hours. 48 hours is the conservative promise.
It takes longer when:
If I see the project will take longer, I tell you before starting — not after.
Mostly no. The process is async via Telegram. You'll need to:
Everything else happens on my side. No calls required for standard projects.
Each order covers one application deployment. A second project is a new order at the same price.
Returning clients get priority turnaround — I already know your AWS setup, so subsequent deployments are typically faster.
Have multiple apps to deploy at once? Reach out before ordering — I can often arrange a package deal.
The most important questions — answered fully.
I access your account via a Switch Role — like a guest key, not a master key. You create it yourself by running a one-time script in AWS CloudShell (inside your own browser). I never see your password, root credentials, or access keys.
The role grants PowerUserAccess — enough to deploy infrastructure, but with zero access to your billing dashboard, payment methods, or account settings.
Full setup guide with the script: vibe.qlrscore.com/security.html
Many developers copy permanent AWS_ACCESS_KEY_ID and paste them into GitHub Secrets. If the repo is ever compromised — leaked, forked, or accessed by a bad actor — those keys are exposed permanently. Attackers use them for crypto mining and you get a $5,000 AWS bill.
With OIDC, GitHub Actions gets a short-lived token that expires in 1 hour. There are no permanent credentials in your repo. Even if someone gets the token — it's already expired by the time they try to use it.
This is the AWS-recommended best practice for CI/CD. Used by companies like Stripe, Shopify, and GitHub itself.
One step. No calls. No emails. No waiting:
The moment you click Delete, the Switch Role is gone. Your app keeps running — only my access disappears. Your CI/CD pipeline continues working via the separate GitHub OIDC role.
What you pay, when, and to whom.
Typical monthly AWS cost for a standard deployment:
Total: ~$10–25/month for most apps at moderate traffic.
Compare: Vercel Pro $20–100+/mo, Railway $30–150+/mo — with vendor lock-in. Your AWS bill goes directly to AWS. I get nothing from it.
From me: No. You pay $497 once. No monthly fee, no retainer, no "maintenance subscription" unless you choose the Maintenance & Monitoring add-on.
From AWS: You pay AWS directly for what you use — server time, storage, data transfer. I configure billing alerts so nothing surprises you.
Optional extras: Domain registration (~$10–15/year from a registrar, not me). Complex project scope ($797–$997, discussed upfront). Maintenance & Monitoring ($99/month, optional).
This is the recurring option for clients who want zero infrastructure overhead long-term:
Why it matters long-term: Without patching, Docker and OS vulnerabilities accumulate. Without monitoring, you learn about downtime from angry users. $99/mo means your infrastructure runs itself while you focus on your product.
Before work starts — full refund, no questions.
Work in progress, issue on my side — I fix it or refund the relevant portion. I'm not interested in keeping money for work that didn't deliver.
Issue is in your code (app bugs, missing env vars, logic errors) — outside infrastructure scope, no refund. I'll still help you figure it out.
I'm a solo operator. My reputation is worth more than any single sale.
What your infrastructure looks like in 3 months, 1 year, and beyond.
For code changes — just git push to your main branch. GitHub Actions deploys automatically in 3–5 minutes. Zero console interaction required.
For infrastructure changes (adding a service, changing server size) — the Terraform files in your repo are the source of truth. Any developer can modify them. Or you come back to me — returning clients get priority scheduling.
Vertical scaling (bigger server) — change one line in Terraform, apply. Takes 10 minutes, zero data loss. t3.small → t3.medium → t3.large as traffic grows.
Horizontal scaling (Auto Scaling + Load Balancer) — this is a complex project engagement. We scope it together, typically $797–$997 depending on architecture requirements.
Database scaling — if you outgrow the Docker PostgreSQL setup, migrating to Amazon RDS is straightforward with Terraform. Data migration takes 30–60 minutes of downtime or zero downtime with replication.
Three options:
The goal of the Terraform blueprints is precisely this — you're never fully dependent on me. The infrastructure is documented and reproducible.
Still have a question? Just ask — I'll reply within 2 hours.