-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
22 lines (19 loc) · 951 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (19 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Environment template for Urban Thermal Copilot (FortyGuard Hackathon '26).
#
# To use: copy this to `.env` and fill in your real keys:
# cp .env.example .env
#
# The `.env` file is gitignored. Keys are read via python-dotenv
# (load_dotenv) or os.environ in code -- never hardcoded in source.
#
# The app runs fully in MOCK / cached mode even with NO keys (it uses
# representative fixtures under data/fixtures/). Add a key to switch that
# part of the app to live data.
# FortyGuard API key (Basic/Startup plan during hackathon).
# Without it the app runs from fixtures (mock mode).
FORTYGUARD_API_KEY=your_fortyguard_api_key_here
# Optional: Google AI Studio key for the AI executive report (Feature 6).
# Without it, Feature 6 renders a deterministic template report.
GEMINI_API_KEY=your_gemini_api_key_here
# Optional: override the Gemini model used for the report (default gemini-1.5-flash).
# GEMINI_MODEL=gemini-3.5-flash-lite (default)