-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
executable file
·82 lines (69 loc) · 3.21 KB
/
env.example
File metadata and controls
executable file
·82 lines (69 loc) · 3.21 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
# ============================================================================
# SvelteKit + Bun Cloud Environment Variables
# ============================================================================
# Copy this file to .env.local and fill in your values.
# .env.local is gitignored and should contain secrets.
# This .env.example should be committed to the repo as a reference.
# ============================================================================
# ----------------------------------------------------------------------------
# Runtime / Node Compatibility
# ----------------------------------------------------------------------------
NODE_ENV=development
PORT=3000
HOST=0.0.0.0
# ----------------------------------------------------------------------------
# SvelteKit - Public (exposed to client-side code)
# Access via: import { PUBLIC_* } from '$env/static/public'
# ----------------------------------------------------------------------------
PUBLIC_APP_NAME=MyApp
PUBLIC_APP_URL=http://localhost:3000
PUBLIC_API_BASE_URL=http://localhost:3000/api
PUBLIC_ENVIRONMENT=development
# ----------------------------------------------------------------------------
# SvelteKit - Private (server-only)
# Access via: import { * } from '$env/static/private'
# ----------------------------------------------------------------------------
DATABASE_URL=
AUTH_SECRET=
SESSION_SECRET=
# SvelteKit adapter-node: trusted origin for CSRF protection
ORIGIN=http://localhost:3000
# SvelteKit adapter-node: reverse proxy headers
PROTOCOL_HEADER=x-forwarded-proto
HOST_HEADER=x-forwarded-host
ADDRESS_HEADER=x-forwarded-for
# SvelteKit adapter-node: request body limit (default 512KB)
# BODY_SIZE_LIMIT=524288
# ----------------------------------------------------------------------------
# Feature Flags (server-only)
# ----------------------------------------------------------------------------
# Enable local filesystem path input method (disabled by default for security)
# ALLOW_LOCAL_PATH=true
# Comma-separated list of directories the local-path method is allowed to read from.
# Paths are resolved to absolute form before comparison.
# When empty or unset, any path is accepted (as long as ALLOW_LOCAL_PATH=true).
# ALLOWED_LOCAL_DIRS=/home/user/projects,/opt/app/repos
# ----------------------------------------------------------------------------
# API Keys (server-only, never prefix with PUBLIC_)
# ----------------------------------------------------------------------------
ANTHROPIC_API_KEY=
# Claude model for dependency analysis (default: claude-sonnet-4-6-20250514)
# CLAUDE_MODEL=claude-sonnet-4-6-20250514
# OPENAI_API_KEY=
# STRIPE_SECRET_KEY=
# STRIPE_WEBHOOK_SECRET=
# ----------------------------------------------------------------------------
# Bun-Specific
# ----------------------------------------------------------------------------
# BUN_INSTALL=~/.bun
# BUN_CONFIG_REGISTRY=https://registry.npmjs.org/
# BUN_CONFIG_NO_VERIFY=false
# BUN_RUNTIME_TRANSPILER_CACHE_PATH=/tmp/bun-cache
# ----------------------------------------------------------------------------
# Git / CI / Cloud
# ----------------------------------------------------------------------------
# CI=true
# GIT_AUTHOR_NAME=
# GIT_AUTHOR_EMAIL=
# GITHUB_TOKEN=
# NO_COLOR=1