33 lines
861 B
Bash
33 lines
861 B
Bash
# Resend API Configuration
|
|
RESEND_API_KEY=re_72PzbVrr_DiwTnB1ZDT7TyqCsgLoAfKfU
|
|
|
|
# Company Email (接收联系表单邮件的邮箱)
|
|
COMPANY_EMAIL=contact@novalon.cn
|
|
|
|
# Next.js Configuration
|
|
NEXT_PUBLIC_SITE_URL=https://www.novalon.cn
|
|
|
|
# Sentry Error Monitoring (Production)
|
|
NEXT_PUBLIC_SENTRY_DSN=https://xxxxxxxxxxxxx@o4507xxxxx.ingest.sentry.io/xxxxxxxxxxxxx
|
|
|
|
# Google Analytics (可选 - 用于访问统计)
|
|
NEXT_PUBLIC_GA_MEASUREMENT_ID=G-LGTLCR15KM
|
|
|
|
# NextAuth Configuration
|
|
NEXTAUTH_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
NEXTAUTH_URL=https://www.novalon.cn
|
|
|
|
# Admin User
|
|
ADMIN_EMAIL=contact@novalon.cn
|
|
ADMIN_PASSWORD=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
# Database
|
|
DATABASE_URL=file:./data/prod.db
|
|
|
|
# File Upload
|
|
UPLOAD_DIR=./uploads
|
|
MAX_FILE_SIZE=10485760
|
|
|
|
# Environment
|
|
NODE_ENV=production
|