34 lines
724 B
Bash
34 lines
724 B
Bash
# 服务器配置
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
DEBUG=false
|
|
|
|
# 文件上传配置
|
|
UPLOAD_DIR=./uploads
|
|
MAX_FILE_SIZE=104857600
|
|
ALLOWED_EXTENSIONS=.stp,.step,.stp.gz
|
|
|
|
# 几何处理配置
|
|
POINTCLOUD_SAMPLE_COUNT=10000
|
|
MESH_QUALITY=high
|
|
PARALLEL_PROCESSING=true
|
|
|
|
# PostgreSQL 数据库配置
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=moldinsight
|
|
DB_USER=moldinsight_user
|
|
DB_PASSWORD=your_secure_password_here
|
|
|
|
# RustFS 对象存储配置 (S3v4 API)
|
|
RUSTFS_ENDPOINT=http://localhost:9000
|
|
RUSTFS_ACCESS_KEY=your-access-key
|
|
RUSTFS_SECRET_KEY=your-secret-key
|
|
RUSTFS_TIMEOUT=30
|
|
RUSTFS_PRESIGNED_URL_EXPIRES=3600
|
|
|
|
# JWT认证配置
|
|
SECRET_KEY=your-secret-key-change-in-production-min-32-chars
|
|
ALGORITHM=HS256
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=1440
|