-
Notifications
You must be signed in to change notification settings - Fork 407
Expand file tree
/
Copy path.env.example
More file actions
43 lines (34 loc) · 1.4 KB
/
.env.example
File metadata and controls
43 lines (34 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Clawith Environment Variables
# Copy this file to .env and fill in the values
# Security
SECRET_KEY=change-me-in-production
JWT_SECRET_KEY=change-me-jwt-secret
# Database (auto-configured by setup.sh; override for custom setups)
# For local dev, ssl=disable is required to prevent asyncpg SSL negotiation hang
# DATABASE_URL=postgresql+asyncpg://clawith:clawith@localhost:5432/clawith?ssl=disable
# Redis
# REDIS_URL=redis://localhost:6379/0
# Feishu OAuth (optional, for SSO login)
FEISHU_APP_ID=
FEISHU_APP_SECRET=
FEISHU_REDIRECT_URI=http://localhost:3000/auth/feishu/callback
# Agent workspace data directory.
# Default: local host -> ~/.clawith/data/agents ; container runtime -> /data/agents
# AGENT_DATA_DIR=
# 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=
# Public app URL used in user-facing links, such as password reset emails.
# Production must use your real public HTTPS domain (not localhost).
PUBLIC_BASE_URL=http://localhost:3008
# System email delivery (used for forgot-password and optional broadcast emails)
SYSTEM_EMAIL_FROM_ADDRESS=
SYSTEM_EMAIL_FROM_NAME=Clawith
SYSTEM_SMTP_HOST=
SYSTEM_SMTP_PORT=465
SYSTEM_SMTP_USERNAME=
SYSTEM_SMTP_PASSWORD=
SYSTEM_SMTP_SSL=true
SYSTEM_SMTP_TIMEOUT_SECONDS=15
# Password reset token lifetime in minutes
PASSWORD_RESET_TOKEN_EXPIRE_MINUTES=30