19 lines
599 B
Plaintext
19 lines
599 B
Plaintext
# Database
|
||
DATABASE_URL="file:./dev.db"
|
||
|
||
# NextAuth.js
|
||
# 重要:确保 URL 不包含多余的引号,格式应为:https://your-domain.com
|
||
NEXTAUTH_URL="https://recorder.zyj.best"
|
||
NEXTAUTH_SECRET="your-nextauth-secret"
|
||
# 可选:设置 Cookie 域名(生产环境)
|
||
NEXTAUTH_COOKIE_DOMAIN="recorder.zyj.best"
|
||
|
||
# Google OAuth
|
||
GOOGLE_CLIENT_ID="your-google-client-id"
|
||
GOOGLE_CLIENT_SECRET="your-google-client-secret"
|
||
|
||
# AWS S3 Configuration
|
||
AWS_ACCESS_KEY_ID="your-aws-access-key-id"
|
||
AWS_SECRET_ACCESS_KEY="your-aws-secret-access-key"
|
||
AWS_REGION="us-east-1"
|
||
AWS_S3_BUCKET="your-s3-bucket-name" |