From 73ba7d6577f4e5139a412a6acc820c688b3e369c Mon Sep 17 00:00:00 2001 From: Maze Winther Date: Mon, 14 Jul 2025 16:16:10 +0200 Subject: [PATCH] fix: better auth env variable --- .github/CONTRIBUTING.md | 2 +- apps/web/.env.example | 2 +- packages/auth/src/server.ts | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 989278c3..2f28b36b 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -61,7 +61,7 @@ Thank you for your interest in contributing to OpenCut! This document provides g # Generate a secure secret for Better Auth BETTER_AUTH_SECRET="your-generated-secret-here" - BETTER_AUTH_URL="http://localhost:3000" + NEXT_PUBLIC_BETTER_AUTH_URL="http://localhost:3000" # Redis (matches docker-compose.yaml) UPSTASH_REDIS_REST_URL="http://localhost:8079" diff --git a/apps/web/.env.example b/apps/web/.env.example index 0b4c649b..834171a0 100644 --- a/apps/web/.env.example +++ b/apps/web/.env.example @@ -4,7 +4,7 @@ DATABASE_URL="postgresql://opencut:opencutthegoat@localhost:5432/opencut" # Better Auth -BETTER_AUTH_URL=http://localhost:3000 +NEXT_PUBLIC_BETTER_AUTH_URL=http://localhost:3000 BETTER_AUTH_SECRET=your-secret-key-here #Google Clients diff --git a/packages/auth/src/server.ts b/packages/auth/src/server.ts index 940f24c2..668d27de 100644 --- a/packages/auth/src/server.ts +++ b/packages/auth/src/server.ts @@ -22,6 +22,7 @@ export const auth = betterAuth({ clientSecret: process.env.GOOGLE_CLIENT_SECRET as string, }, }, + baseURL: process.env.NEXT_PUBLIC_BETTER_AUTH_URL, appName: "OpenCut", trustedOrigins: ["http://localhost:3000"], });