/REPLIT + LOVABLE MIGRATION

MIGRATE OFF
REPLIT OR LOVABLE.
OWN THE SERVER.

Your app on a VPS in your own name. From about $20 a month.

WHAT IT COSTS
/01

The bill

Every square is $10. One documented month on Replit, then the same month on your own server.

$0
One month on Replit
On your own server

One documented month, on top of a $100 plan. Lovable bills in credits that expire instead, and arrives at the same problem from the other direction. Either way the number follows how much you build. The one green square is the whole bill on a server of your own.

/02

Price

The migration is a fixed price, agreed before anything starts.

Simple app
$500
most Replit and Lovable apps
  • App and database moved
  • Domain, security, backups
  • A one page guide
START
Bigger app
$1,000+
quoted after we read it
  • Background jobs and payments
  • Uploads, several services
  • Everything in the simple one
GET A QUOTE
Then monthly
$20+
to the provider, not to us
  • A server sized to your app
  • Security layer is free
  • Cancel anytime, nothing breaks
ASK US
/FREE APP SCAN

What your app
is built on.

Paste the address your Replit or Lovable app is published at. A few seconds, no account, no charge.

Public address only. Nothing is asked of your account, and nothing is stored.

/ YOUR MACHINE

A server, in your name

  • Opened on your card, so nothing depends on us being here next year
  • Published prices from the VPS providers we deploy on. Tap a row to check one.
What a server costsPublished prices, checked August 2026

Checked at each provider on 24 August 2026. Vultr and Akamai from their public APIs, DigitalOcean, OVHcloud and Lightsail from their pricing pages, Hetzner from its own CX22 announcement because hetzner.com renders prices in JavaScript. Most migrated apps sit between $4 and $20 a month.

/ SIDE BY SIDE

Two bills for the same work

  • Replit meters seven things while you build, and Lovable prices every message in credits that expire
  • On the right, one number that does not care how many tries it took
Replit or LovableMetered
Agent checkpoint$0.06 to $1+
Assistant checkpoint$0.05 each
Model usage past your creditspay as you go
Deploymentmetered
Databasemetered
Object storagemetered
Core subscription$20.00
One documented month$0.00
Claude CodeFlat rate
Agent attempt$0.00
Retry after a failure$0.00
Model usageincluded
Deploymentyour server
Databaseyour server
Object storageyour server
Subscription$20.00
Every month$20.00

The left column is a rate card, not an invoice. Those meters run at the same time, which is why nobody can tell you what next month costs. The $1,982.37 is one Replit customer's documented month, linked above. The Lovable credit costs are Lovable's own published examples.

/03

How

Seven steps, and almost none of it lands on you.

STEP 01 OF 07

We look at your app

You send us the link. We list everything it uses, including whatever has to be exported from Replit or Lovable, and come back with a fixed price.

You do: send a link. Costs you nothing.

The technical detail

We clone the repository and read the files that describe how Replit was running it: the .replit run command, the Nix channel in replit.nix, and package.json or pyproject.toml. Then we list the managed pieces the app leans on, because those are the ones that do not come with the code: the Postgres instance, Object Storage buckets, the Secrets panel, scheduled jobs, and whether it was deployed as an Autoscale or a Reserved VM. Anything binding to 0.0.0.0 on a Replit assigned port gets noted, because that changes on a real server.

Step 1 of 7
In
short

Moving a Replit app to your own server means copying the code, the database and the uploaded files onto a machine in your own account, putting Cloudflare in front of it, and pointing your domain at it. Neurobird does that for a fixed $500 for a simple app, or from $1,000 for a complex one.

Hosting was never the expensive part of Replit. Agent work is billed per attempt, so a try that failed costs the same as one that worked. A server of your own runs from about $20 a month and the number does not move.

Reference detail

How do you move a Replit app to a VPS?

A Replit to VPS migration is four jobs, not one. To move a Replit app off the platform: You get the code out to a repository you control. You take a full copy of the database and any uploaded files. You reproduce the runtime, which on Replit is described by a .replit file and a Nix configuration, so that the app starts the same way on an ordinary Linux machine. Then you point the domain at the new server, and only then do you turn anything off.

The order matters more than the tooling. Most migrations that go wrong go wrong because somebody cancelled the subscription before taking the database copy, or pointed the domain at a server that had never served real traffic. Done in the right order, the old deployment stays live the whole time and the rollback is a DNS change that takes minutes.

How do I export a Replit project and its database?

To export Replit code, connect the workspace to GitHub and push. That is the easy half. Once you push, and you have the repository. What surprises people is everything the code assumes exists around it.

The Replit database is Postgres, so it comes across with a normal dump and restore, and the only real discipline is comparing row counts on both sides before you trust it. Replit's key value store is a different thing and has to be exported to JSON and folded into your own storage. Object storage buckets have to be copied file by file and checksummed. Secrets have to be re-entered by hand, because they were never in the repository. A Git export on its own is not a working app somewhere else, and that gap is where a migration either succeeds or quietly loses data.

Is a Replit alternative the same as self hosting?

No, and the difference is the whole point. Moving from Replit to Lovable, Bolt.new or v0 swaps one managed builder for another. You get a different editor and a different billing model, but you still do not own the machine, you still cannot take a copy of the running system, and you are still one pricing change away from the same conversation.

Self hosting means the server is rented in your name, the database sits on a disk you control, and the domain points wherever you tell it. Nothing about the app has to change for that to be true. People usually keep building with AI afterwards, just on a flat rate plan where a retry costs nothing, rather than a platform that meters each attempt.

Why is Replit expensive, and what does it actually cost?

If Replit feels too expensive, the subscription is rarely the reason. Replit Core is $20 a month, or $20 billed annually, and it includes a credit allowance towards model usage. Past that allowance, agent work is billed per action, and this is where Replit pricing surprises people: the attempt that did not fix anything is charged at the same rate as the one that did.

That is why bills are unpredictable rather than merely high. Deployments, the database and object storage all meter at the same time, so nobody can tell you what next month costs. One customer documented $1,982.37 in a single month on top of a $100 plan. Hosting the same app on a VPS runs from about $20 a month, and the number is identical whether the model got it right first time or on the fifth.

What does vendor lock in mean for a vibe coded app?

Vendor lock in is usually described as a contract problem. For an app built on a managed AI builder it is more practical than that: some parts of what you built are portable and some simply are not.

Your code, your database, your uploaded files and your domain are all yours and all move. The platform's own services do not. Replit Auth is the clearest example, because sign in has to be rebuilt somewhere else, and that is a decision rather than a copy. Knowing which side of that line each piece falls on before you commit is the difference between a migration and a rescue. It is also why the inventory comes first and the price comes after it.

What moves, and what does not
WhatMoves?What happens
Your codeMovesExported to a Git repository you own. It is your code, and Replit's terms do not change that.
Your Postgres databaseMovesDumped and restored whole, with row counts compared on both sides before anything is pointed at it.
Uploaded files and Object StorageMovesCopied to a disk on your server, or to your own S3 bucket if the app expects one.
Environment variables and secretsMovesRe-entered on your server in a file only root can read. They never sit in a vendor panel again.
Your custom domainMovesIt never belonged to Replit. It stays at your registrar and simply starts pointing somewhere else.
Scheduled jobs and background workMovesRebuilt as system timers or worker containers, which is usually more reliable than what they replace.
Replit Auth loginsDoes not moveThis is the one real casualty. Replit Auth is theirs, so sign in has to be replaced, and we will tell you the options before you commit.
Replit Key Value DBConvertedExported to JSON, then folded into your Postgres or kept as a simple key value store you run.
The Replit editor and AgentDoes not moveYou keep building, just somewhere that does not bill you per attempt. Most people move to a flat rate coding plan.
Always On and Reserved VMNot neededA server you rent is always on by definition. There is nothing to buy back.
Why any of this matters, with sources
/FAQ

Straight answers

How much does it cost?

$500 for a straightforward app. From $1,000 if it has extra moving parts. You get the number before anything starts.

What do I pay every month afterwards?

Usually $4 to $20 for the server, paid to the provider, not to us. Replit's Core plan alone is $20 a month before any usage.

Can I still build with AI afterwards?

Yes, and that is the point. Replit charges per attempt, so a failed try costs what a good one does. Claude Pro is $20 a month, includes Claude Code, and does not charge you for retries.

Will my app go down?

No. Your Replit version stays live until the new one is working. The switch takes minutes and we can undo it just as fast.

Do I need to understand any of this?

No. You send a link at the start and click around once near the end. Everything else is our side.

Do I really own it at the end?

Yes. The server is in your account, the domain stays with you, the database is on your disk. We hold nothing you would have to ask us for.

My app was vibe coded and the code is a mess.

That is the normal case. We are moving it, not rewriting it. We will tell you what is fragile, but the job is the same app on your own machine.

Can you move me off Lovable, Bolt.new or v0?

Yes. Same seven steps.

Is Replit too expensive for a small app?

Below roughly $40 a month, no, and moving would not pay for itself yet. The problem starts when agent usage pushes the bill into the hundreds, because that part is metered per attempt and cannot be predicted. A VPS running the same app costs about $20 a month and the number is identical every month, which is usually what people are actually buying.

Can I move my Replit app to a VPS myself?

You can. The code exports to GitHub in a few clicks. What takes the time is everything around it: the database copy and its row counts, the object storage, the secrets, the runtime, the security layer and a cutover you can undo. Doing it half way is worse than not starting, because an app running with no backups and no firewall is more fragile than it was on Replit, not less.

Does Replit own my app?

No. The code you write, or that the agent writes for you, is yours. What belongs to Replit is the platform around it: the editor, the agent, Replit Auth, Replit's key value database and the hosting. That is the practical difference between owning your app and owning your app's home, and it is the reason a migration is possible at all.

Do I lose my database if I cancel Replit?

If you cancel without taking a copy, yes, and that is the single most expensive mistake in this whole process. Take a dump of your Postgres database before you cancel anything. In a migration this is step three and it happens long before anything is switched off, which is the entire reason the steps run in that order.

Can I keep my custom domain if I move off Replit?

Yes, and nothing about it is difficult. Your domain was never Replit's. It sits at your registrar and it currently points at their servers. Moving is a matter of changing where it points, and visitors see no difference at all.

What happens to my users' logins when I leave Replit?

This is the one real casualty. If your app uses Replit Auth for sign in, that service is theirs and does not travel. Sign in has to be replaced, usually with your own email and password, a magic link, or Google sign in. Your user records and their data come across intact, so this is about how people prove who they are, not about losing them. If your app already handles its own sign in, nothing changes at all.

Can you move a Replit app without a developer?

You personally do not need to be one, no. You send a link and you click around once near the end. But somebody has to do the work, and doing it half way is worse than not starting: an app moved without backups, without a firewall and without a rollback is more fragile than it was on Replit, not less.

What is the hardest part of moving off Replit?

Not the code, which is the part everyone worries about. It is the managed pieces that have no obvious equivalent: authentication, object storage, scheduled jobs and anything that relied on Replit's own database. Those need decisions rather than copying, which is exactly why the inventory comes first and the price comes after it.

Is it worth moving off Replit?

It depends entirely on your bill. Below roughly $40 a month, honestly no, and the calculator on this page will tell you the same thing. The moment agent usage pushes you into the hundreds, the arithmetic changes fast, because a server does not care how many times the model had to try.

What exactly is a VPS?

A computer you rent, in a data centre, that only runs your things. Nobody else's app shares it, you have full access to it, and it costs a fixed amount every month whatever happens on it. DigitalOcean rents them from $4.00 a month. That is the entire concept.

How do I export my Replit project myself?

Connect the workspace to GitHub and push, which gets the code out. That is the easy half. The harder half is everything the code assumes exists: the database, the file storage, the secrets and the run command. A Git export on its own is not a working app somewhere else, which is what surprises most people who try it.

GET A PLAN

Send us the link

That is genuinely all we need to start. You get a list of what your app uses and a fixed price for the migration back, within one business day.

Replit and Lovable cost guides

What each platform actually charges for, what it comes to over a year, and how to spend less without moving at all. Every figure is quoted from the platform's own published pages.