-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 2.14 KB
/
.env.example
File metadata and controls
34 lines (27 loc) · 2.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
# AI Operations OS — Environment Variables
# Copy this file to .env and fill in your values.
# ── Server ────────────────────────────────────────────────
OPS_PORT=3100
OPS_HOST=0.0.0.0
OPS_API_KEY= # Set to require bearer auth (leave blank for dev mode)
# ── Database ──────────────────────────────────────────────
OPS_DB_PATH= # Default: ~/.ai-ops/data.db
# ── Google OAuth2 (Gmail + Calendar) ─────────────────────
GMAIL_CLIENT_ID=
GMAIL_CLIENT_SECRET=
GMAIL_REDIRECT_URI=http://localhost:3100/api/oauth/google/callback
# ── X / Twitter ───────────────────────────────────────────
X_API_KEY= # Bearer token from developer.twitter.com
X_USER_ID= # Your X/Twitter user ID (for likes, retweets, timeline)
# ── Shopify ──────────────────────────────────────────────
SHOPIFY_STORE_URL= # e.g., https://your-store.myshopify.com
SHOPIFY_ACCESS_TOKEN= # Admin API access token from Shopify Partners
# ── Safety ────────────────────────────────────────────────
CORD_HMAC_KEY= # HMAC key for signing execution receipts (required in production)
POLICY_VERSION=v1 # Policy version identifier for receipt chain
# ── LLM (for intent classification) ──────────────────────
OPS_LLM_PROVIDER= # ollama | openai | anthropic (default: heuristic classifier)
OPS_LLM_MODEL= # e.g., llama3.2, gpt-4o-mini, claude-haiku-4-5-20251001
ANTHROPIC_API_KEY= # Required when OPS_LLM_PROVIDER=anthropic
OPENAI_API_KEY= # Required when OPS_LLM_PROVIDER=openai
OLLAMA_URL= # Default: http://localhost:11434 (for OPS_LLM_PROVIDER=ollama)