-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (52 loc) · 2.34 KB
/
.env.example
File metadata and controls
63 lines (52 loc) · 2.34 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
# ThumbCode Environment Configuration
# Copy this file to .env.local and fill in your values
# NEVER commit .env.local or any file containing actual secrets
# ============================================================
# ENVIRONMENT
# ============================================================
# App environment: development | staging | production
VITE_APP_ENV=development
# Enable development features (set to false in production)
VITE_ENABLE_DEV_TOOLS=true
# ============================================================
# AI PROVIDER API KEYS (BYOK - Bring Your Own Keys)
# ============================================================
# Note: These are stored securely at runtime using the credential store.
# The .env file is only used for development convenience.
# In production, users provide their own keys through the app UI.
# Anthropic API Key
# Get yours at: https://console.anthropic.com/settings/keys
# ANTHROPIC_API_KEY=sk-ant-...
# OpenAI API Key
# Get yours at: https://platform.openai.com/api-keys
# OPENAI_API_KEY=sk-...
# ============================================================
# GITHUB INTEGRATION
# ============================================================
# GitHub OAuth App (for Device Flow authentication)
# Create at: https://github.com/settings/developers
VITE_GITHUB_CLIENT_ID=
# GitHub Personal Access Token (for development only)
# Create at: https://github.com/settings/tokens
# Required scopes: repo, workflow, read:org
# GITHUB_TOKEN=ghp_...
# ============================================================
# CAPACITOR / BUILD CONFIGURATION
# ============================================================
# Capacitor project configuration
VITE_APP_ID=app.thumbcode
# ============================================================
# OPTIONAL: API PROXIES / CUSTOM ENDPOINTS
# ============================================================
# Override default API endpoints (useful for proxies or self-hosted)
# ANTHROPIC_API_URL=https://api.anthropic.com
# OPENAI_API_URL=https://api.openai.com/v1
# GITHUB_API_URL=https://api.github.com
# ============================================================
# OPTIONAL: ANALYTICS & MONITORING (Production)
# ============================================================
# Sentry DSN for error tracking
# SENTRY_DSN=
# PostHog for product analytics
# POSTHOG_API_KEY=
# POSTHOG_HOST=https://app.posthog.com