-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
61 lines (53 loc) · 3.55 KB
/
Copy path.env.example
File metadata and controls
61 lines (53 loc) · 3.55 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
50
51
52
53
54
55
56
57
58
59
60
61
# Copy this file to .env and fill in your values.
# Never commit .env — it is gitignored.
# ── Google / BigQuery ──────────────────────────────────────────────────
# OAuth2 token JSON (from generate_readonly_token.py or gcloud ADC).
# Required by: read_google_docs, write_google_docs, summarize_google_docs,
# analyze_customer_feedback (Gmail), fetch_nps_data, fetch_churn_data
GOOGLE_OAUTH_TOKEN=
# ── Metabase ───────────────────────────────────────────────────────────
# API key for your Metabase instance.
# Required by: analyze_customer_feedback (NPS & churn), answer_pricing
METABASE_API_KEY=
# ── Pricing projection (answer_pricing) ────────────────────────────────
# Rate constants for the cost projector. No values ship in the repo — set
# the variables relevant to your pricing model. CLI flags override all of these.
#
# Seat-based
SEAT_PRICE= # price per seat per month
SEATS= # current (POC) seat count
TARGET_SEATS= # target seat count for scaling
#
# Usage-based / metered
USAGE_UNIT_NAME= # human-readable unit ("API calls", "compute-hours", "GB")
USAGE_UNIT_PRICE= # price per unit
PRICE_PER_1K_UNITS= # price per 1,000 units (alternative to per-unit)
#
# Hybrid (seat + overage)
INCLUDED_UNITS_PER_SEAT= # units bundled per seat before overage kicks in
OVERAGE_UNIT_PRICE= # price per unit above the included allowance
#
# Sensitivity grid — optional comma-separated values to compare scenarios
PRICE_GRID=
USAGE_GRID=
# ── Grain ──────────────────────────────────────────────────────────────
# Personal Access Token or Workspace Access Token for the Grain REST API.
# Required by: votc_insights
GRAIN_TOKEN=
# ── Notion ─────────────────────────────────────────────────────────────
# Internal integration token for your Notion workspace.
# Required by: weekly_wynk, write_notion
NOTION_API_KEY=
# ── Slack ──────────────────────────────────────────────────────────────
# Incoming webhook URL for the Slack channel you want to post to.
# Required by: post_to_slack, weekly_wynk
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/WEBHOOK/URL
# ── Warp / Oz ──────────────────────────────────────────────────────────────
# API key used by the fix_p0_issues skill to spawn cloud coding agents.
# Required by: fix_p0_issues
WARP_API_KEY=
# ── Email ──────────────────────────────────────────────────────────────────
# The email address used to filter feedback emails in Gmail.
# Required by: analyze_customer_feedback (fetch_gmail_feedback.py)
# Replace with your own feedback inbox address.
FEEDBACK_EMAIL=feedback@your-company.com