-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
17 lines (16 loc) · 754 Bytes
/
.env.example
File metadata and controls
17 lines (16 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DATABASE_URL="mongodb://root:password@host.docker.internal:27017,host.docker.internal:27018,host.docker.internal:27019/chat_system?replicaSet=rs0&authSource=admin"
NEXTAUTH_SECRET="123456" # !WARNING: secret for JWT, change it in production
NEXTAUTH_URL="http://localhost:3000"
OPENAI_API_KEY="sk-xxxxxx"
OPENAI_BASE_URL="https://api.openai.com/v1"
OSS_ACCESS_KEY_ID="xxxxxx"
OSS_ACCESS_KEY_SECRET="xxxxxx"
OSS_BUCKET="bucket-name"
OSS_REGION="oss-cn-shanghai"
RABBITMQ_URL="amqp://admin:password@localhost:5672"
NEXT_PUBLIC_SOCKETIO_SERVER_URL="http://localhost:3001"
NEXT_PUBLIC_SOCKETIO_PATH="/socketio/"
REDIS_URL="redis://localhost:6379"
# default values, change it in production
# MONGO_ROOT_PASSWORD="password"
# RABBITMQ_DEFAULT_PASS="password"