-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (32 loc) · 737 Bytes
/
.env.example
File metadata and controls
37 lines (32 loc) · 737 Bytes
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
# Core
ENVIRONMENT=development
APP_NAME=BIODEFENSE OS
APP_HOST=0.0.0.0
APP_PORT=8000
WEB_PORT=3000
# Database
POSTGRES_USER=biodefense
POSTGRES_PASSWORD=biodefense
POSTGRES_DB=biodefense_os
POSTGRES_PORT=5432
DATABASE_URL=postgresql+psycopg://biodefense:biodefense@postgres:5432/biodefense_os
# Redis
REDIS_URL=redis://redis:6379/0
REDIS_PORT=6379
# Security
JWT_SECRET=change-me-in-production
JWT_ALGORITHM=HS256
JWT_EXPIRE_MINUTES=480
# AI Provider
ANTHROPIC_API_KEY=
ANTHROPIC_MODEL=claude-opus-4-6
AI_TIMEOUT_SECONDS=90
CORS_ORIGINS=["http://localhost:3000"]
# Object storage (dev local)
OBJECT_STORAGE_PROVIDER=local
OBJECT_STORAGE_LOCAL_PATH=/data/object-store
S3_BUCKET=
S3_REGION=
S3_ENDPOINT=
S3_ACCESS_KEY=
S3_SECRET_KEY=