-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
128 lines (99 loc) · 3.32 KB
/
.env.example
File metadata and controls
128 lines (99 loc) · 3.32 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
120
121
122
123
124
125
126
127
128
# Copy this file to .env and fill in real values.
# The .env file is excluded from version control.
# Database
DB_NAME=jobtracker
DB_USERNAME=jobtracker
DB_PASSWORD=change_me
# JWT
JWT_SECRET=replace_with_a_256_bit_random_string
# Tracing (1.0 = 100 %; lower for production)
TRACING_SAMPLING_PROBABILITY=1.0
# Observability
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
PROMETHEUS_URL=http://localhost:9090
# Email
MAIL_FROM=no-reply@example.com
MAIL_PASSWORD='1111111111111'
MAIL_HOST=smtp.example.com
MAIL_PORT=465
MAIL_USERNAME=no-reply@example.dev
MAIL_SMTP_AUTH=true
MAIL_SMTP_SSL=true
# ============================================
# Synkra AIOX 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=
# --------------------------------------------
# AIOX Core Configuration
# --------------------------------------------
NODE_ENV=development
AIOX_VERSION=2.2.0
# --------------------------------------------
# Custom Configuration
# --------------------------------------------
# Add your custom API keys below