File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
lib/javascript/fullstack_demo Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=Your Next Public Clerk Publishable Key here
22CLERK_SECRET_KEY=Your Clerk Secret Key here
33DB_TYPE=postgres
44NEXT_PUBLIC_API_URL=http://localhost:3000
5- DATABASE_URL=Your Postgres database URL
5+ DATABASE_URL=Your Postgres connection pooling database URL
6+ DIRECT_URL=Your Postgres direct database URL
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ generator client {
33}
44
55datasource db {
6- provider = " postgresql "
7- url = env (" DATABASE_URL " )
6+ provider = " postgresql "
7+ url = env (" DATABASE_URL " )
8+ directUrl = env (" DIRECT_URL " )
89}
910
1011/// This table has subclasses and requires additional setup for migrations. Visit https://pris.ly/d/table-inheritance for more info.
You can’t perform that action at this time.
0 commit comments