-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 1015 Bytes
/
.env.example
File metadata and controls
26 lines (20 loc) · 1015 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
# Left commented on purpose so `make setup-env` does not poison ADC with a fake
# path in CI, Docker builds, or local shells. Uncomment only if your local
# machine needs to point ADC at a real credential file. The deployed App Engine
# service uses its attached service account instead.
# GOOGLE_APPLICATION_CREDENTIALS=/path/to/policyengine_gcp_credentials.json
# Password for connecting to the PolicyEngine database
POLICYENGINE_DB_PASSWORD=policyengine_db_password
# Github Microdata Token
POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN=policyengine_github_token
# API key for Anthropic
ANTHROPIC_API_KEY=policyengine_anthropic_api_key
# API Key for OpenAI
OPENAI_API_KEY=policyengine_openai_api_key
# Token for Hugging Face models
HUGGING_FACE_TOKEN=policyengine_huggingface_token
# Redis is required for budget-window economy requests and other API cache paths.
# Local development and App Engine use an in-container/local Redis by default.
CACHE_REDIS_HOST=127.0.0.1
CACHE_REDIS_PORT=6379
CACHE_REDIS_DB=0