# Guides (Prisma ORM v7) (/docs/guides/v7)

> For the complete Prisma documentation index, see [llms.txt](https://www.prisma.io/docs/llms.txt). A markdown version of any docs page is available by appending `.md` to its URL.

A collection of guides for various tasks and workflows

Location: Guides > Guides

This section contains step-by-step guides for specific tasks with Prisma products, including Prisma ORM, Prisma Accelerate, and Prisma Postgres.

## Quick start [#quick-start]

Scaffold a new project with Prisma ORM and Prisma Postgres already set up:

  

#### bun

```bash
bunx create-prisma@stable
```

#### pnpm

```bash
pnpm create prisma@stable
```

#### yarn

```bash
yarn create prisma@stable
```

#### npm

```bash
npm create prisma@stable
```

Pick your framework and options from the prompts. To skip prompts use `--yes`, to set a framework upfront use `--template` (`next`, `hono`, `svelte`, `astro`, `nuxt`, `tanstack-start`, `nest`, `elysia`, `turborepo`).

## Getting started [#getting-started]

* [Next.js](https://www.prisma.io/docs/guides/v7/frameworks/nextjs) - Learn how to use Prisma ORM in a Next.js app and deploy it to Vercel
* [Hono](https://www.prisma.io/docs/guides/v7/frameworks/hono) - Learn how to use Prisma ORM in a Hono app
* [SvelteKit](https://www.prisma.io/docs/guides/v7/frameworks/sveltekit) - Learn how to use Prisma ORM in a SvelteKit app
* [React Router 7](https://www.prisma.io/docs/guides/v7/frameworks/react-router-7) - Learn how to use Prisma ORM in a React Router 7 app
* [SolidStart](https://www.prisma.io/docs/guides/v7/frameworks/solid-start) - Learn how to use Prisma ORM in a SolidStart app

## Deployment [#deployment]

* [Docker](https://www.prisma.io/docs/guides/v7/deployment/docker) - Run a Prisma ORM app and its database with Docker Compose
* [Cloudflare Workers](https://www.prisma.io/docs/guides/v7/deployment/cloudflare-workers) - Use Prisma ORM and Prisma Postgres in a Cloudflare Worker
* [Cloudflare D1](https://www.prisma.io/docs/guides/v7/deployment/cloudflare-d1) - Use Prisma ORM with Cloudflare D1
* [Turborepo](https://www.prisma.io/docs/guides/v7/deployment/turborepo) - Share a Prisma ORM database package in a Turborepo monorepo
* [pnpm workspaces](https://www.prisma.io/docs/guides/v7/deployment/pnpm-workspaces) - Share a Prisma ORM database package in a pnpm workspace
* [Bun workspaces](https://www.prisma.io/docs/guides/v7/deployment/bun-workspaces) - Share a Prisma ORM database package in a Bun workspace

## Database [#database]

* [Multiple databases](https://www.prisma.io/docs/guides/v7/database/multiple-databases) - Use several Prisma Clients in one app
* [Expand-and-contract migrations](https://www.prisma.io/docs/guides/v7/database/data-migration) - Migrate data safely with the expand and contract pattern
* [Schema changes](https://www.prisma.io/docs/guides/v7/database/schema-changes) - Handle migrations when working as a team

## Switch to Prisma ORM [#switch-to-prisma-orm]

* [From Drizzle](https://www.prisma.io/docs/guides/v7/switch-to-prisma-orm/from-drizzle)
* [From Sequelize or TypeORM](https://www.prisma.io/docs/guides/v7/switch-to-prisma-orm/from-sql-orms)
* [From Mongoose](https://www.prisma.io/docs/guides/v7/switch-to-prisma-orm/from-mongoose)

## Integrations [#integrations]

* [AI SDK](https://www.prisma.io/docs/guides/v7/integrations/ai-sdk) - Store chat sessions and messages with Prisma ORM and Next.js
* [GitHub Actions](https://www.prisma.io/docs/guides/v7/integrations/github-actions) - Provision a Prisma Postgres database per pull request

## Related pages

- [`Writing guides`](https://www.prisma.io/docs/guides/making-guides): How to write, validate, and file a Prisma ORM guide for the Prisma documentation.