Back up your stuff ASAP - What I did to avoid downtime with production SaaS
I run a production SaaS with my prototype on Manus. Here's what I did.
I have four sites on Manus, one of them is a full production app... AI platform for enterprise users, real customers, user accounts, a database I cannot lose. This was a surprise announcement.
Here's what worked.
- Get your code OUT first. Project Settings > GitHub. Enable the integration, let it create a private repo, push everything. Took minutes per site. Make a GitHub acct for free. The zip download works too but the GitHub sync from Manus is cleaner.
- Your DATABASE is not in your code export. If your app has users, orders, content... that lives in a database Manus hosts, and the code zip does NOT include it. Ask the agent in your project chat to run a full mysqldump and give you the .sql file as a download. Mine did it in one prompt.
- Screenshot your Secrets tab and save every value in a password manager. API keys, SMTP, payment keys. Some env vars are injected by Manus and won't be visible... the database one especially. That's what step 2 is for.
- Check your Domains tab NOW if you bought domains through Manus. Registration dates matter, there's a 60 day ICANN transfer lock from purchase. And figure out whether you can edit DNS before the 23rd, not during the blackout.
- Do the official Data Backup Tool too. But do NOT let it be your only copy. The restore is one shot, no retry, and if the account info doesn't match it fails. Your GitHub repo and your .sql file don't have that problem.
I'm redeploying on my own hosting this week so the 23rd is a non-event for me either way. Total cost of the escape: about $30/mo and a weekend.
Ask Manus in each project to give you a complete dump of all captures: the site architecture, every page and route, assets, database/forms, SEO setup, email flow, migration notes, and checkpoint history so the project can be restored outside Manus.
You can deploy it from GitHub to Netlify or whatever option you want. Only just need to point the domain there, and you are good.
This is going to be a massive cutover of millions of users and projects. Assume something bad will happen, so get your stuff set up for the worst-case scenario.
I would hate to work at Manus right now- appreciate their effort with this.