From 226f1ddc2f3e1d794f660b55bf465b44f0b3d931 Mon Sep 17 00:00:00 2001 From: ruheni Date: Wed, 26 Apr 2023 08:40:50 +0200 Subject: [PATCH] chore: add admonition for installation with a different package manager --- content/100-getting-started/01-quickstart.mdx | 6 ++++++ .../110-relational-databases/index.mdx | 6 ++++++ .../110-relational-databases/index.mdx | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/content/100-getting-started/01-quickstart.mdx b/content/100-getting-started/01-quickstart.mdx index 756063b27b..a9ffa2866b 100644 --- a/content/100-getting-started/01-quickstart.mdx +++ b/content/100-getting-started/01-quickstart.mdx @@ -39,6 +39,12 @@ npm install typescript ts-node @types/node --save-dev This creates a `package.json` with an initial setup for your TypeScript app. + + +See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager. + + + Now, initialize TypeScript: ```terminal diff --git a/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx b/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx index 9a76c17dab..7ca904570a 100644 --- a/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx +++ b/content/100-getting-started/02-setup-prisma/100-start-from-scratch/110-relational-databases/index.mdx @@ -110,6 +110,12 @@ This creates a `package.json` with an initial setup for a Node.js app. + + +See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager. + + + You can now invoke the Prisma CLI by prefixing it with `npx`: ```terminal diff --git a/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx b/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx index 9c452b3092..bf090ef713 100644 --- a/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx +++ b/content/100-getting-started/02-setup-prisma/200-add-to-existing-project/110-relational-databases/index.mdx @@ -88,6 +88,12 @@ You can now invoke the Prisma CLI by prefixing it with `npx`: npx prisma ``` + + +See [installation instructions](/reference/api-reference/command-reference#installation) to learn how to install Prisma using a different package manager. + + + Next, set up your Prisma project by creating your [Prisma schema](/concepts/components/prisma-schema) file template with the following command: ```terminal copy