File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# When adding additional environment variables, the schema in "/src/env.mjs"
10
10
# should be updated accordingly.
11
+
12
+ # Prisma
13
+ # https://www.prisma.io/docs/reference/database-reference/connection-urls#env
14
+ # DATABASE_URL="file:./db.sqlite" # unnused now for postgres
15
+
16
+ # Next Auth
17
+ # You can generate a new secret on the command line with:
18
+ # openssl rand -base64 32
19
+ # https://next-auth.js.org/configuration/options#secret
20
+ NEXTAUTH_SECRET = " "
21
+ NEXTAUTH_URL = " http://localhost:3000"
22
+
23
+ POSTGRES_URL =
24
+ POSTGRES_PRISMA_URL = " "
25
+ POSTGRES_URL_NON_POOLING = " "
26
+
27
+ NEXT_PUBLIC_WALLET_CONNECT_ID =
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const Banner = () => {
21
21
>
22
22
< Flex align = "center" fontSize = "sm" >
23
23
< Text fontWeight = "medium" maxW = { { base : "32ch" , md : "unset" } } >
24
- Acamdey V2 is coming soon 👀... Subscribe to our newsletter for
24
+ Academy V2 is coming soon 👀... Subscribe to our newsletter for
25
25
updates!
26
26
</ Text >
27
27
< chakra . a
You can’t perform that action at this time.
0 commit comments