Your app is ready — time to put it on the internet.
First, push your code to GitHub so Vercel can see it:
form builder appIn Chapter 1, you created a Vercel project for your portfolio site. This is a different app, so it needs its own project.
Go to vercel.com/new. Find your SSR repository and click Import.
Before you deploy, add your database credentials. Expand Environment Variables and add both:
DB_URL — paste the database URL from the Turso dashboard (the libsql:// one)DB_AUTH_TOKEN — paste the auth token from the Turso dashboard (the long string starting with eyJ...)
Click Deploy.
Once it's deployed, click the screenshot image link to open your live site, just like you did in Chapter 1. Confirm it ends in .vercel.app — that's your live site.
The deploy will usually succeed, but the app can fail at runtime if it can't reach the database. Go to the Logs tab in your Vercel project to see the actual error.

If it's a Drizzle or database error, it almost always means DB_URL or DB_AUTH_TOKEN is wrong. Double-check both in Vercel → Settings → Environment Variables, then redeploy.
Create a form, submit a response, and check the results page. Everything works the same as local, but now it's on the internet — your database, your server, a real URL anyone can visit.

You can also check the Turso dashboard — click Edit Data on your database to see the actual rows your app created.


This isn't a tutorial exercise. It's a working app with a real backend:
Two different people, two different URLs, one shared database. You went from "my site can't remember anything" to "someone across the internet just sent me data." That's a big jump.
Your form builder uses a capability URL — the link is the key. That works well for simple sharing. But what if you need to know who someone is, not just whether they have a link? What if you want a dashboard that only you can see, with all your forms in one place?
That's when you need login. And that's what comes next.