Netlify fix env vars and Deploy prisma #69
2 changed files with 4 additions and 2 deletions
1
.env
1
.env
|
|
@ -7,6 +7,7 @@ TWILIO_PHONE_NUMBER=
|
|||
|
||||
# PRISMA
|
||||
DATABASE_URL="postgres://hestia:test123@localhost:5432/hestia"
|
||||
DIRECT_URL="postgres://hestia:test123@localhost:5432/hestia"
|
||||
|
||||
# CLERK
|
||||
PUBLIC_CLERK_PUBLISHABLE_KEY=secret_do_not_commit_or_change_this_create_.env.local_instead
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ generator pothos {
|
|||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
directUrl = env("DIRECT_URL")
|
||||
}
|
||||
|
||||
model User {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue