docs/self-hosting/deployments/vercel.mdx
Currently Vercel Pro Plan is required to be able to Deploy this application with Vercel, due to limitations on the number of serverless functions on the free plan.
You need a PostgresDB database hosted somewhere. Supabase offer a great free option while Heroku offers a low-cost option.
```
yarn workspace @calcom/prisma db-deploy
```
</Step>
<Step title="Open [Prisma Studio](https://www.prisma.io/studio)">
To look at or modify the database content
```
yarn db-studio
```
</Step>
<Step title="Open User model">
Click on the `User` model to add a new user record.
</Step>
<Step title="Create new user">
Fill out the fields (remembering to encrypt your password with [BCrypt](https://bcrypt-generator.com/)) and click `Save 1 Record` to create your first user.
</Step>
<Step title="Login">
Open a browser to [port 3000](http://localhost:3000/) on your localhost and login with your just created, first user.
</Step>