-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
33 lines (23 loc) · 751 Bytes
/
.env.example
File metadata and controls
33 lines (23 loc) · 751 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
# Veil Armor Environment Configuration
# Google Gemini API Key (REQUIRED for LLM generation)
GEMINI_API_KEY=your_gemini_api_key_here
# HuggingFace Token (for model access)
HF_TOKEN=your_huggingface_token_here
# Veil Armor API Key (for authenticating API requests)
VEIL_ARMOR_API_KEY=your_secret_api_key_here
# Veil Armor API URL (for chatbot client)
VEIL_ARMOR_API_URL=http://localhost:8000
# JWT Secret (for token-based authentication)
JWT_SECRET=your_jwt_secret_here_minimum_32_characters_long_secret
# Rate Limiting Storage
REDIS_URL=memory://
# Database
DATABASE_URL=sqlite:///data/canary_tokens.db
# Logging
LOG_LEVEL=INFO
LOG_FORMAT=json
# Monitoring
PROMETHEUS_ENABLED=false
PROMETHEUS_PORT=9090
# Development
ENVIRONMENT=development