-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (17 loc) · 745 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (17 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# AgentAudit environment — copy to .env and fill in.
# All Razorpay secrets stay server-side; never expose to frontend/MCP/agent processes.
# --- LLM gateway (all providers via OpenRouter) ---
OPENROUTER_API_KEY=
# --- Razorpay (TEST MODE only for this project) ---
RAZORPAY_KEY_ID=
RAZORPAY_KEY_SECRET=
# Create a webhook in the Razorpay dashboard (Settings > Webhooks) and copy its
# signing secret here — key_id/key_secret alone cannot verify webhook signatures.
RAZORPAY_WEBHOOK_SECRET=
# --- Database ---
# Local dev default is SQLite; deployed envs use Postgres:
# postgresql+asyncpg://postgres:postgres@localhost:5432/agentaudit
DATABASE_URL=sqlite+aiosqlite:///./agentaudit.db
# --- Engine guards ---
COST_CAP_USD=30
PORT=8000