base website #10

Merged
stan merged 17 commits from staging into main 2026-08-31 14:47:50 +00:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit 0e8c3c70b8 - Show all commits

View File

@@ -1,7 +1,5 @@
FROM oven/bun AS builder
RUN bun
WORKDIR /app
COPY package.json bun.lock ./

View File

@@ -8,8 +8,8 @@ import * as schema from '$lib/server/db/schema';
import type { RequestEvent } from '@sveltejs/kit';
export const auth = betterAuth({
baseURL: env.ORIGIN,
secret: env.BETTER_AUTH_SECRET,
baseURL: env.ORIGIN ?? 'http://localhost:3000',
secret: env.BETTER_AUTH_SECRET ?? 'build-time-placeholder',
database: drizzleAdapter(db, { provider: 'pg', schema }),
emailAndPassword: { enabled: true },
socialProviders: {