How to Configure Your Database URL

  1. Locate your .env file in the root of your project
  2. Add or update your DATABASE_URL and DATABASE_DIRECT_URL environment variable:DATABASE_URL=
    DATABASE_DIRECT_URL=
  3. Run Prisma Generate to update your database client:pnpm generatedb
  4. Push your schema changes to the database:pnpm pushdb
  5. Your database is now configured and ready to use!
    To learn more about Prisma, visit the official Prisma documentation.