Prisma
5views
- project
.env.local
如果我们环境变量像这样,然后运行:
npx prisma db push
Will be error like this:
Prisma schema loaded from prisma/schema.prisma
Datasource "db": SQLite database
Error: Prisma schema validation - (get-config wasm)
Error code: P1012
error: Environment variable not found: DATABASE_URL.
--> prisma/schema.prisma:14
|
13 | // provider = "postgresql"
14 | url = env("DATABASE_URL")
|
Validation Error Count: 1
[Context: getConfig]
Prisma CLI Version : 6.5.0
By default, Prisma Client will use the environment specified in the default .env file located at the project's root.
默认情况下,Prisma Client 将使用位于项目根目录的默认 .env 文件中指定的环境。
使用 dot-env(不是唯一办法,而是最优解),然后可以使用如下命令:
npx dotenv-cli -e .env.local -- npx prisma db push