17 lines
295 B
Plaintext
17 lines
295 B
Plaintext
# 服务器配置
|
|
PORT=5001
|
|
NODE_ENV=development
|
|
BODY_LIMIT=5mb
|
|
|
|
# 数据库配置
|
|
MONGODB_URI=mongodb://localhost:27017/typeskill
|
|
|
|
# JWT配置
|
|
JWT_SECRET=your_jwt_secret_key_here
|
|
|
|
# 词汇防作弊配置
|
|
VOCABULARY_FULL_CORRECT_WORD_THRESHOLD=50
|
|
|
|
# CORS配置
|
|
CORS_ORIGIN=http://localhost:3000
|