20 lines
515 B
Plaintext
20 lines
515 B
Plaintext
# Database
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=wedding_planner
|
|
POSTGRES_HOST=postgres
|
|
|
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:5432/${POSTGRES_DB}
|
|
|
|
# App Config
|
|
NEXTAUTH_SECRET=your-secret
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
|
|
|
# SMTP (optional)
|
|
SMTP_HOST=mail.smtp2go.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=briannelson.dev
|
|
SMTP_PASS=xgh14Mq9cKrYt65m
|
|
SMTP_FROM_NAME=Wedding Planner
|
|
SMTP_FROM_EMAIL=hello@briannelson.dev |