e433cea908
Co-Authored-By: Paperclip <noreply@paperclip.ing>
16 lines
462 B
Bash
16 lines
462 B
Bash
# Required: Generate with `openssl rand -base64 32`
|
|
BETTER_AUTH_SECRET=change-me-in-production-min-32-chars!!
|
|
|
|
# Base URL of the auth service
|
|
BETTER_AUTH_URL=http://localhost:3001
|
|
|
|
# Shared PostgreSQL database
|
|
DATABASE_URL=postgresql://cartsnitch:cartsnitch@localhost:5432/cartsnitch
|
|
|
|
# Port the auth service listens on
|
|
PORT=3001
|
|
|
|
# Resend email provider for transactional email
|
|
RESEND_API_KEY=re_your_api_key_here
|
|
FROM_EMAIL=CartSnitch <noreply@cartsnitch.com>
|