forked from airweave-ai/airweave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
64 lines (53 loc) · 1.27 KB
/
.env.example
File metadata and controls
64 lines (53 loc) · 1.27 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Airweave Environment Variables
# Copy this file to .env and update with your values
# Database Configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=airweave
POSTGRES_PASSWORD=airweave1234!
POSTGRES_DB=airweave
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
# Authentication
FIRST_SUPERUSER=admin@example.com
FIRST_SUPERUSER_PASSWORD=admin
ENCRYPTION_KEY=
AUTH_ENABLED=false
STATE_SECRET=
# Auth0 Configuration (required if AUTH_ENABLED=true)
AUTH0_DOMAIN=
AUTH0_AUDIENCE=
AUTH0_RULE_NAMESPACE=
# Vector Database Configuration
QDRANT_HOST=localhost
QDRANT_PORT=6333
TEXT2VEC_INFERENCE_URL=http://localhost:9878
# API Keys (optional)
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
MISTRAL_API_KEY=
# Development Settings
LOCAL_DEVELOPMENT=false
LOCAL_CURSOR_DEVELOPMENT=false
ENVIRONMENT=local
FRONTEND_LOCAL_DEVELOPMENT_PORT=8080
SKIP_AZURE_STORAGE=true
STRIPE_ENABLED=false
# Temporal Configuration
TEMPORAL_HOST=localhost
TEMPORAL_PORT=7233
TEMPORAL_NAMESPACE=default
TEMPORAL_TASK_QUEUE=airweave-sync-queue
TEMPORAL_ENABLED=true
# Custom Deployment URLs (optional)
API_FULL_URL=
APP_FULL_URL=
QDRANT_FULL_URL=
ADDITIONAL_CORS_ORIGINS=
# Other Settings
PROJECT_NAME=Airweave
LOG_LEVEL=INFO
RUN_ALEMBIC_MIGRATIONS=true
RUN_DB_SYNC=true
CODE_SUMMARIZER_ENABLED=false