Files
wr.do/content/docs/developer/database.mdx
2024-07-30 17:24:20 +08:00

42 lines
921 B
Plaintext

---
title: Database
description: How to config your Neon database.
---
Here are some free postgres database:
- [Neon](https://neon.tech)
- [Supabase](https://supabase.com)
## Steps
<Steps>
### Create Neon account
If don't have an account on Neon, just follow their steps [here](https://neon.tech/docs/get-started-with-neon/signing-up) for create one.
### Copy database url
After create a project on Neon, you can copy the database url. Select `Prisma` from the list then the `env` tab.
<Callout type="warning">
<b>Don't forget</b> to reveal the information hidden behind the stars using
the eye icon. It's not very visible in dark mode.
</Callout>
Paste in your `.env` file.
```js
DATABASE_URL = "postgres://alex:AbC123dEf@ep-cool-darkness-123456.us-east-2.aws.neon.tech/dbname";
```
### Push migrations
You can push the migrations on your database with the cli.
```bash
npx prisma db push
```
</Steps>