DocsIntegrationsDatabase Connections

Database Connections

Connect your projects to databases for persistent data storage.

Supported Databases

  • PostgreSQL: Full-featured relational database.
  • MySQL: Popular open-source database.
  • MongoDB: Document-based NoSQL database.
  • Redis: In-memory caching and data store.
  • SQLite: Lightweight file-based database.

Setting Up a Database

  1. Go to Project Settings → Databases.
  2. Click "Add Database" and choose your provider.
  3. Enter the connection string or credentials.
  4. Test the connection and save.

Using Prisma

Codeezly has built-in support for Prisma ORM. Define your schema in prisma/schema.prisma and run migrations with:

npx prisma migrate dev