fix: fail fast if BETTER_AUTH_SECRET is not set
Remove hardcoded fallback secret that allowed sessions to be signed with a well-known value if the env var was unset. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
+6
-1
@@ -10,10 +10,15 @@ const pool = new Pool({
|
|||||||
"postgresql://cartsnitch:cartsnitch@localhost:5432/cartsnitch",
|
"postgresql://cartsnitch:cartsnitch@localhost:5432/cartsnitch",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const secret = process.env.BETTER_AUTH_SECRET;
|
||||||
|
if (!secret) {
|
||||||
|
throw new Error("BETTER_AUTH_SECRET environment variable is required");
|
||||||
|
}
|
||||||
|
|
||||||
export const auth = betterAuth({
|
export const auth = betterAuth({
|
||||||
database: pool,
|
database: pool,
|
||||||
basePath: "/auth",
|
basePath: "/auth",
|
||||||
secret: process.env.BETTER_AUTH_SECRET ?? "change-me-in-production-min-32-chars!!",
|
secret,
|
||||||
baseURL: process.env.BETTER_AUTH_URL ?? "http://localhost:3001",
|
baseURL: process.env.BETTER_AUTH_URL ?? "http://localhost:3001",
|
||||||
|
|
||||||
emailAndPassword: {
|
emailAndPassword: {
|
||||||
|
|||||||
Reference in New Issue
Block a user