Twilioapp/.env.example

50 lines
1.3 KiB
Plaintext
Raw Normal View History

# Twilio配置
TWILIO_ACCOUNT_SID=your_twilio_account_sid_here
TWILIO_AUTH_TOKEN=your_twilio_auth_token_here
TWILIO_API_KEY=your_twilio_api_key_here
TWILIO_API_SECRET=your_twilio_api_secret_here
# Stripe配置
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key_here
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key_here
# API配置
API_BASE_URL=https://your-api-domain.com/api/v1
API_TIMEOUT=30000
# 应用配置
APP_NAME=翻译助手
APP_VERSION=1.0.0
APP_ENVIRONMENT=development
# 推送通知配置
FCM_SERVER_KEY=your_fcm_server_key_here
APNS_KEY_ID=your_apns_key_id_here
APNS_TEAM_ID=your_apns_team_id_here
# 日志配置
LOG_LEVEL=debug
ENABLE_CRASH_REPORTING=true
# 功能开关
ENABLE_AI_TRANSLATION=true
ENABLE_HUMAN_TRANSLATION=true
ENABLE_VIDEO_CALLS=true
ENABLE_DOCUMENT_TRANSLATION=true
ENABLE_APPOINTMENT_BOOKING=true
# 第三方服务配置
GOOGLE_TRANSLATE_API_KEY=your_google_translate_api_key_here
MICROSOFT_TRANSLATOR_API_KEY=your_microsoft_translator_api_key_here
# 存储配置
AWS_ACCESS_KEY_ID=your_aws_access_key_here
AWS_SECRET_ACCESS_KEY=your_aws_secret_key_here
AWS_REGION=us-east-1
AWS_S3_BUCKET=your-translation-app-bucket
# 数据库配置(如果需要)
DATABASE_URL=postgresql://username:password@host:port/database_name
# Redis配置如果需要
REDIS_URL=redis://localhost:6379