forked from pingwu/maca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (40 loc) · 1.59 KB
/
Copy path.env.example
File metadata and controls
49 lines (40 loc) · 1.59 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
# Task Tracker - Environment Configuration Template
# ================================
# Google Sheets Configuration
# ================================
# Your Google Sheets ID (found in the URL)
# Example: https://docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/edit
# The ID is: 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms
GOOGLE_SHEETS_ID=your_google_sheets_id_here
# Path to Google Service Account credentials (relative to crew-service/)
GOOGLE_APPLICATION_CREDENTIALS=credentials/gcp-service-account.json
# ================================
# AI/LLM Configuration
# ================================
# OpenAI API key for CrewAI agents
OPENAI_API_KEY=your_openai_api_key_here
# Optional: Anthropic API key for Claude models
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# ================================
# Service Configuration
# ================================
# Service URLs (for development)
CREW_SERVICE_URL=http://crew-service:8001
API_SERVICE_URL=http://api-service:8000
REACT_APP_API_URL=http://localhost:8000
# Allowed CORS origins (comma-separated)
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001
# ================================
# Development Configuration
# ================================
# Environment setting
ENVIRONMENT=development
# Enable React hot reloading in Docker
CHOKIDAR_USEPOLLING=true
# ================================
# Logging Configuration
# ================================
# Log level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO
# Redact user inputs from logs (true/false)
LOG_REDACT_INPUTS=true