Back to browse
I deployed a flight search app in 60s without writing a line of code

I deployed a flight search app in 60s without writing a line of code

by ptak_dev·Mar 6, 2026·2 points·1 comment

AI Analysis

MidShip ItBold Bet

AI deploys apps to VMs automatically, but the demo is borrowed from their App Store.

Strengths
  • Removes deployment friction (Dockerfile, cloud console, env vars, SSL) entirely
  • Real VM provisioning, not sandboxed—genuinely persistent infrastructure
  • End-to-end automation: writing, integration, testing, and deployment in one agent loop
Weaknesses
  • Demo app (JetSet AI) is pre-built in their App Store, not written by the user
  • No clear differentiation from existing AI deployment tools (e.g., Vercel, Render, Railway)
  • Unclear if this scales beyond simple apps or handles stateful services
Category
Target Audience

Side-project builders frustrated with deployment overhead

Similar To

Vercel AI Functions · Render Deploy · Railway Platform

Post Description

Hi HN!

I've been building side projects for a few years and the part I hate isn't the building — it's the hour you lose after. Dockerfile, cloud console, environment variables, reverse proxy, SSL. The app works on localhost but getting it to a URL someone else can open is a whole separate project.

I came across SuperNinja last week. Every app runs on a dedicated VM — not a sandboxed session or a container that spins down, but a real virtual machine that stays up and runs a server. It behaves like a developer sitting at a terminal, not a code generator handing you a zip file.

I tested it with JetSet AI, a flight search app in their App Store. Typed "cheapest flight from New York to London next Friday" and got back live results with real pricing. It's must be using a travel API but it is clearly not mocked data (I compared to Google Flights).

I didn't write anything. The agent provisioned the VM, wrote the integration, tested it and deployed it — 60 seconds from clicking Deploy to a live URL. (To be honest: the app was pre-built in the App Store so 60s is deploy time not build time)

Most AI tools give you a codebase. This gives you a running computer and that's extremely useful.

What I've been doing since: using SuperNinja to extend JetSet AI — adding filters, tweaking the UI, changing how results display. You describe what you want and the agent edits the running app. No redeployment, no touching the repo. Changes are live immediately.

If you want to try it: https://bit.ly/4besn7l

Happy to answer questions — I've only been using it a week so I'll be honest about what I don't know.

Similar Projects