# ============================================= # DATABASE # ============================================= DATABASE_URL="postgresql://postgres:password@localhost:5432/innungsapp" # ============================================= # BETTER-AUTH # ============================================= BETTER_AUTH_SECRET="change-me-to-a-random-32-char-string" BETTER_AUTH_URL="http://localhost:3000" # ============================================= # EMAIL (SMTP for magic links & invitations) # ============================================= EMAIL_FROM="noreply@innungsapp.de" SMTP_HOST="smtp.example.com" SMTP_PORT="587" SMTP_SECURE="false" SMTP_USER="" SMTP_PASS="" # ============================================= # ADMIN APP (Next.js) # ============================================= NEXT_PUBLIC_APP_URL="http://localhost:3000" # ============================================= # MOBILE APP (Expo) # ============================================= EXPO_PUBLIC_API_URL="http://localhost:3000" # ============================================= # FILE UPLOADS # ============================================= UPLOAD_DIR="./uploads" UPLOAD_MAX_SIZE_MB="10"