aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-20 15:42:03 -0700
committerGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-20 15:42:03 -0700
commit2e06dbaffe1188caf0a0d2f9b1a4c819369caa53 (patch)
treeb5c487965d72b84e402a2ff64ff31cf7f55e8c50
parent19151bb1d2b722a053388e8e2f0137cb492527ce (diff)
downloadbun-2e06dbaffe1188caf0a0d2f9b1a4c819369caa53.tar.gz
bun-2e06dbaffe1188caf0a0d2f9b1a4c819369caa53.tar.zst
bun-2e06dbaffe1188caf0a0d2f9b1a4c819369caa53.zip
Update prisma guide
-rw-r--r--docs/guides/ecosystem/prisma.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/guides/ecosystem/prisma.md b/docs/guides/ecosystem/prisma.md
index e697e2133..08d56440d 100644
--- a/docs/guides/ecosystem/prisma.md
+++ b/docs/guides/ecosystem/prisma.md
@@ -2,6 +2,12 @@
name: Get started using Prisma
---
+{% callout %}
+**Note** — At the moment Prisma needs Node.js to be installed to run certain generation code. Make sure Node.js is installed in the environment where you're running `bunx prisma` commands.
+{% /callout %}
+
+---
+
Prisma works out of the box with Bun. First, create a directory and initialize it with `bun init`.
```bash