--- title: Database description: How to config your Neon database. --- Here are some free postgres database: - [Neon](https://neon.tech) - [Supabase](https://supabase.com) ## 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. Don't forget to reveal the information hidden behind the stars using the eye icon. It's not very visible in dark mode. 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 ```