forked from RBKunnela/paybot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
119 lines (93 loc) · 3.35 KB
/
.env.example
File metadata and controls
119 lines (93 loc) · 3.35 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# ============================================
# Synkra AIOS Environment Configuration
# ============================================
# Copy this file to .env and fill in your actual values
# DO NOT commit .env with real credentials
# ============================================
# --------------------------------------------
# LLM Providers
# --------------------------------------------
# DeepSeek API (for claude-free command)
# Get your key at: https://platform.deepseek.com/api_keys
# Cost: ~$0.14/M tokens with tool calling support
DEEPSEEK_API_KEY=
# OpenRouter API (for multi-model routing)
# Get your key at: https://openrouter.ai/keys
OPENROUTER_API_KEY=
# Anthropic API (direct, if not using Claude Max subscription)
# Get your key at: https://console.anthropic.com/
ANTHROPIC_API_KEY=
# OpenAI API Key - Get yours at: https://platform.openai.com/api-keys
OPENAI_API_KEY=
# --------------------------------------------
# Search & Research Tools
# --------------------------------------------
# Exa Search API (web search for agents)
# Get your key at: https://exa.ai/
EXA_API_KEY=
# Context7 (library documentation lookup)
# Usually free, no key required for basic usage
CONTEXT7_API_KEY=
# --------------------------------------------
# Database & Backend
# --------------------------------------------
# Supabase (database, auth, storage)
# Get from your Supabase project settings
SUPABASE_URL=
SUPABASE_ANON_KEY=
SUPABASE_SERVICE_ROLE_KEY=
# --------------------------------------------
# Version Control & CI/CD
# --------------------------------------------
# GitHub Token (for GitHub CLI and API access)
# Create at: https://github.com/settings/tokens
GITHUB_TOKEN=
# --------------------------------------------
# Project Management
# --------------------------------------------
# ClickUp API (if using ClickUp integration)
# Get from: ClickUp Settings > Apps > API Token
CLICKUP_API_KEY=
# --------------------------------------------
# Automation & Workflows
# --------------------------------------------
# N8N (workflow automation)
# From your N8N instance settings
N8N_API_KEY=
N8N_WEBHOOK_URL=
# --------------------------------------------
# Monitoring & Analytics
# --------------------------------------------
# Sentry (error tracking)
SENTRY_DSN=
# --------------------------------------------
# Cloud Providers
# --------------------------------------------
# Railway (deployment)
RAILWAY_TOKEN=
# Vercel (deployment)
VERCEL_TOKEN=
# --------------------------------------------
# AIOS Core Configuration
# --------------------------------------------
NODE_ENV=development
AIOS_VERSION=2.2.0
# --------------------------------------------
# Atlassian / Confluence / Jira
# --------------------------------------------
# Confluence (wiki documentation)
CONFLUENCE_URL=https://your-domain.atlassian.net/wiki
CONFLUENCE_BASE_URL=https://your-domain.atlassian.net/wiki
CONFLUENCE_USERNAME=your-email@company.com
CONFLUENCE_API_TOKEN=your-confluence-api-token
CONFLUENCE_SPACE_KEY=YOUR_SPACE
# Atlassian / Jira (issue tracking)
ATLASSIAN_DOMAIN=your-domain.atlassian.net
ATLASSIAN_EMAIL=your-email@company.com
ATLASSIAN_API_TOKEN=your-atlassian-api-token
JIRA_URL=https://your-domain.atlassian.net
JIRA_PROJECT_KEY=YOUR_PROJECT
# --------------------------------------------
# Custom Configuration
# --------------------------------------------
# Add your custom API keys below