16 lines
423 B
Plaintext
16 lines
423 B
Plaintext
# Database
|
|
DATABASE_URL="postgresql://financeapp:password@localhost:5432/financeapp"
|
|
|
|
# NextAuth
|
|
NEXTAUTH_SECRET="<generate with: openssl rand -base64 32>"
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
|
|
# Seed user (used by prisma/seed.ts only)
|
|
SEED_EMAIL="your@email.com"
|
|
SEED_PASSWORD="your-secure-password"
|
|
|
|
# Postgres (used by docker-compose.yml)
|
|
POSTGRES_USER="financeapp"
|
|
POSTGRES_PASSWORD="password"
|
|
POSTGRES_DB="financeapp"
|