Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,30 @@ FEISHU_REDIRECT_URI=http://localhost:3000/auth/feishu/callback
# Default: local host -> ~/.clawith/data/agents ; container runtime -> /data/agents
# AGENT_DATA_DIR=

# File storage backend. Use "s3" for S3-compatible object storage.
# When STORAGE_BACKEND=s3, local fallback lets old files under STORAGE_LOCAL_ROOT
# be read and copied into S3 on first access during migration.
# STORAGE_BACKEND=local
# STORAGE_LOCAL_ROOT=
# STORAGE_LOCAL_FALLBACK_ENABLED=true
# S3_BUCKET=
# S3_REGION=
# S3_ENDPOINT_URL=
# S3_ACCESS_KEY_ID=
# S3_SECRET_ACCESS_KEY=
# S3_PREFIX=agents
# S3_MAX_POOL_CONNECTIONS=50
# S3_WRITE_WORKERS=32

# Local MinIO settings used by docker-compose.multi-instance.yml.
# Change the password before exposing MinIO outside local development.
MINIO_ROOT_USER=clawith
MINIO_ROOT_PASSWORD=clawith-minio-secret
MINIO_BUCKET=clawith
MINIO_API_PORT=9000
MINIO_CONSOLE_PORT=9001
API_PORT=8000

# Jina AI API key (for jina_search and jina_read tools — get one at https://jina.ai)
# Without a key, the tools still work but with lower rate limits
JINA_API_KEY=
Expand All @@ -37,3 +61,13 @@ PUBLIC_BASE_URL=

# Password reset token lifetime in minutes
PASSWORD_RESET_TOKEN_EXPIRE_MINUTES=30

# Frontend port (default: 3008)
# FRONTEND_PORT=3008

# API upstream for nginx proxy (default: backend:8000)
# API_UPSTREAM=backend:8000

# Python pip index URL (for China mirrors)
# CLAWITH_PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
# CLAWITH_PIP_TRUSTED_HOST=pypi.tuna.tsinghua.edu.cn
Loading