You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `prismaExtension` will inject the `DATABASE_URL` environment variable into the build process
448
-
when running the `deploy` command. This means the CLI needs to have `process.env.DATABASE_URL` set
449
-
at the time of calling the `deploy` command. You can do this via a `.env` file and passing the
450
-
`--env-file .env` option to the deploy command or via shell environment variables. This goes for direct database URLs as well.
447
+
The `prismaExtension` will inject the `DATABASE_URL` environment variable into the build process. Learn more about setting environment variables for deploying in our [Environment Variables](/deploy-environment-variables) guide.
451
448
452
-
These environment variables are only used during the build process and are not embedded in the final image.
449
+
These environment variables are only used during the build process and are not embedded in the final container image.
`prismaExtension could not resolve the ${this.options.directUrlEnvVarName} environment variable. Make sure you add it to your environment variables or provide it as an environment variable to the deploy CLI command. See our docs for more info: https://trigger.dev/docs/deploy-environment-variables`
`prismaExtension could not resolve the DATABASE_URL environment variable. Make sure you add it to your environment variables. See our docs for more info: https://trigger.dev/docs/deploy-environment-variables`
252
+
);
238
253
}
239
254
240
255
context.logger.debug(`Adding the prisma layer with the following commands`,{
0 commit comments