mirror of
https://github.com/ponysb/91Writing.git
synced 2026-09-01 15:35:57 +08:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
# 应用配置
|
||||
NODE_ENV=development
|
||||
PORT=7020
|
||||
APP_NAME=AI小说平台
|
||||
APP_SECRET=your-super-secret-key-change-this-in-production
|
||||
APP_URL=http://localhost:7020
|
||||
|
||||
# JWT配置
|
||||
JWT_SECRET=your-jwt-secret-key-change-this
|
||||
ENCRYPT_SECRET=your-encrypt-secret-key-change-this
|
||||
|
||||
# 数据库配置
|
||||
DB_HOST=127.0.0.1
|
||||
DB_PORT=3306
|
||||
DB_NAME=your_database_name
|
||||
DB_USER=your_database_user
|
||||
DB_PASSWORD=your_database_password
|
||||
DB_DIALECT=mysql
|
||||
|
||||
# Redis配置
|
||||
REDIS_HOST=localhost
|
||||
REDIS_PORT=6379
|
||||
REDIS_PASSWORD=your_redis_password_if_needed
|
||||
REDIS_DB=0
|
||||
REDIS_KEY_PREFIX=91_novel:
|
||||
|
||||
# AI模型配置(在管理后台配置,此处仅作说明)
|
||||
# OPENAI_API_KEY=your_openai_api_key
|
||||
# GEMINI_API_KEY=your_gemini_api_key
|
||||
|
||||
# 支付配置(在管理后台配置,此处仅作说明)
|
||||
# LTZF_MCH_ID=your_merchant_id
|
||||
# LTZF_API_KEY=your_payment_api_key
|
||||
# LTZF_NOTIFY_URL=your_notify_url
|
||||
Reference in New Issue
Block a user