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
2
2
CLERK_SECRET_KEY=Your Clerk Secret Key here
3
3
DB_TYPE=postgres
4
4
NEXT_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 {
3
3
}
4
4
5
5
datasource db {
6
- provider = " postgresql "
7
- url = env (" DATABASE_URL " )
6
+ provider = " postgresql "
7
+ url = env (" DATABASE_URL " )
8
+ directUrl = env (" DIRECT_URL " )
8
9
}
9
10
10
11
/// 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