RELEASE-v1.3.0: fix variable naming for clarity
This commit is contained in:
parent
76535bed45
commit
fc1658602a
2 changed files with 2 additions and 2 deletions
|
@ -9,6 +9,6 @@ DATABASE_URL='postgresql://prisma:prisma@localhost:5432/finances?schema=public'
|
|||
|
||||
AUTH0_SECRET=''
|
||||
AUTH0_BASE_URL='http://localhost:3000'
|
||||
AUTH0_ISSUER_BASE_URL=''
|
||||
AUTH0_URL=''
|
||||
AUTH0_CLIENT_ID=''
|
||||
AUTH0_CLIENT_SECRET=''
|
||||
|
|
|
@ -2,7 +2,7 @@ import { Auth0Client } from "@auth0/nextjs-auth0/server"
|
|||
|
||||
export const auth0 = new Auth0Client({
|
||||
appBaseUrl: process.env.AUTH0_BASE_URL,
|
||||
domain: process.env.AUTH0_ISSUER_BASE_URL,
|
||||
domain: process.env.AUTH0_URL,
|
||||
secret: process.env.AUTH0_SECRET,
|
||||
clientId: process.env.AUTH0_CLIENT_ID,
|
||||
clientSecret: process.env.AUTH0_CLIENT_SECRET,
|
||||
|
|
Loading…
Add table
Reference in a new issue