21 lines
520 B
Bash
21 lines
520 B
Bash
# 数据库配置
|
|
DATABASE_URL="postgresql://user:password@localhost:5432/family_tree"
|
|
|
|
# NextAuth 配置
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="your-secret-key-here-please-change-this"
|
|
|
|
# 邮箱服务器配置(用于发送邀请邮件)
|
|
SMTP_HOST="smtp.163.com"
|
|
SMTP_PORT="465"
|
|
SMTP_USER="cftservice@163.com"
|
|
SMTP_PASS="SChncqpqS9TDPUD2"
|
|
SMTP_FROM="cftservice@163.com"
|
|
|
|
# 可选:OAuth 提供商配置
|
|
# GOOGLE_CLIENT_ID=""
|
|
# GOOGLE_CLIENT_SECRET=""
|
|
|
|
# 可选:其他配置
|
|
# NODE_ENV="development"
|