RELEASE-v1.3.0: fix variable naming for clarity

This commit is contained in:
Markus Thielker 2025-03-16 00:49:50 +01:00
parent 76535bed45
commit fc1658602a
2 changed files with 2 additions and 2 deletions

View file

@ -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=''

View file

@ -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,