-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (43 loc) · 1.14 KB
/
.env.example
File metadata and controls
56 lines (43 loc) · 1.14 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
# Environment variables for TestAgent
# Required: Google Gemini API Key
GOOGLE_API_KEY=your_google_api_key_here
# Optional: OpenAI API Key (for alternative LLM)
OPENAI_API_KEY=your_openai_api_key_here
# Application configuration
TESTING=false
DEBUG=false
LOG_LEVEL=INFO
# Playwright configuration
PLAYWRIGHT_HEADLESS=true
PLAYWRIGHT_TIMEOUT=30000
PLAYWRIGHT_BROWSER=chromium
# Test configuration
TEST_TIMEOUT=300
MAX_RETRIES=3
SCREENSHOT_ON_FAILURE=true
# Container configuration
CONTAINER_REGISTRY=ghcr.io
CONTAINER_NAME=testagent
# CI/CD configuration
CI=false
GITHUB_ACTIONS=false
# Security configuration
SECURITY_SCAN_ENABLED=true
DEPENDENCY_CHECK_ENABLED=true
# Performance monitoring
MEMORY_PROFILING_ENABLED=false
PERFORMANCE_MONITORING=false
# Frontend configuration
REACT_APP_API_URL=http://localhost:8000
REACT_APP_WS_URL=ws://localhost:8000/ws
# Database configuration (if needed)
# DATABASE_URL=sqlite:///testagent.db
# Redis configuration (if needed for caching)
# REDIS_URL=redis://localhost:6379
# Notification configuration
SLACK_WEBHOOK_URL=
EMAIL_NOTIFICATIONS_ENABLED=false
SMTP_SERVER=
SMTP_PORT=587
SMTP_USERNAME=
SMTP_PASSWORD=