-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
101 lines (81 loc) · 3.41 KB
/
env.example
File metadata and controls
101 lines (81 loc) · 3.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# ATLASSIAN Environment Variables
# Copy this file to .env and fill in your credentials
# The .env file is ignored by git to keep secrets safe
# ============================================
# ATLASSIAN API Configuration
# ============================================
# Email and API token for authenticating with Atlassian REST API v3
# (Works for both Jira and Confluence)
#
# To create your API token:
# 1. Visit: https://id.atlassian.com/manage-profile/security/api-tokens
# 2. Click "Create API token"
# 3. Give it a descriptive name (e.g., "Box CLI")
# 4. Copy the token and paste below
# Your Datadog email address
ATLASSIAN_EMAIL=your.email@datadog.com
# Atlassian API token (create at link above)
ATLASSIAN_TOKEN=your-atlassian-api-token-here
# ============================================
# SNOWFLAKE Configuration
# ============================================
# Snowflake connection credentials for MCP server
# The authenticator is set to 'externalbrowser' for SSO login
# Snowflake account identifier (format: account.region)
SNOWFLAKE_ACCOUNT=sza96462.us-east-1
# Your Datadog email address (used for Snowflake login)
SNOWFLAKE_USER=your.email@datadoghq.com
# Default database to use
SNOWFLAKE_DATABASE=REPORTING
# Default warehouse to use for queries
SNOWFLAKE_WAREHOUSE=AD_HOC_DEVELOPMENT_LARGE_WAREHOUSE
# ============================================
# DATADOG API Configuration
# ============================================
# Datadog API credentials for querying RUM data
#
# To create your API keys:
# 1. Visit: https://app.datadoghq.com/organization-settings/api-keys
# 2. Create an API Key (for authentication)
# 3. Create an Application Key (for querying data)
# 4. Copy both keys and paste below
# Datadog API Key (for authentication)
DD_API_KEY=your-datadog-api-key-here
# Datadog Application Key (for querying data)
DD_APP_KEY=your-datadog-app-key-here
# Datadog site (default: datadoghq.com)
# Other options: datadoghq.eu, us3.datadoghq.com, etc.
DD_SITE=datadoghq.com
# Datadog RUM Application ID (filters all RUM queries to this app)
# Find yours at: https://app.datadoghq.com/rum/application-settings
DD_RUM_APP_ID=ac8218cf-498b-4d33-bd44-151095959547
# ============================================
# GOOGLE DOCS Configuration
# ============================================
# Apps Script Web App URL for pulling Google Docs as markdown
#
# To set up your own Apps Script:
# 1. See libs/google/webhook-setup.md for deployment instructions
# 2. Deploy the script as a Web App
# 3. Copy the deployment URL and paste below
# Google Docs sync URL (Apps Script Web App endpoint)
GOOGLE_DOCS_SYNC_URL=https://script.google.com/a/macros/your-domain/s/your-script-id/exec
# ============================================
# METABASE Configuration
# ============================================
# Metabase instance and API credentials for dashboard management
#
# To get your API key:
# 1. Log in to Metabase
# 2. Navigate to: Settings → Admin Settings → Settings → Authentication
# 3. Find "API Keys" section
# 4. Create a new API key or use an existing one
# 5. Copy the key and paste below
# Metabase instance URL
METABASE_URL=https://metabase-analytics.us1.prod.dog
# Database ID for creating questions (queries)
METABASE_DATABASE_ID=43
# Parent Collection ID (default location for new dashboards)
METABASE_COLLECTION_ID=120103
# API key for authentication (required)
METABASE_API_KEY=your-metabase-api-key-here