-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (43 loc) · 1.88 KB
/
.env.example
File metadata and controls
51 lines (43 loc) · 1.88 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
# Debug
VITE_DEVTOOLS_ENABLED=<enable vite devtools (default: false)>
# Alchemy (required when using alchemy)
# Generate both the secret and the state token using `openssl rand -base64 32`.
ALCHEMY_SECRET=<***>
ALCHEMY_STATE_TOKEN=<***>
# The hostname used for deployment and for generating VITE_PUBLIC_BASE_URL env.
HOSTNAME=<your app's hostname, e.g. kit.devsantara.com>
# Cloudflare [CI] (required for deployment workflows)
# See https://alchemy.run/guides/cloudflare#api-token
CLOUDFLARE_API_TOKEN=<***>
# Your Cloudflare email
CLOUDFLARE_EMAIL=<***>
# Cloudflare [LOCAL] (required for some local development workflows)
# Optional: Some tools may require the account ID even for local development.
CLOUDFLARE_ACCOUNT_ID=<***>
# Optional: Some tools may require an API token even for local development.
CLOUDFLARE_API_TOKEN=<***>
# Optional: If you want to use the remote D1 database with drizzle studio.
CLOUDFLARE_DATABASE_ID=<***>
# Application
# VITE_PUBLIC_BASE_URL is automatically constructed based on the deployment stage by Alchemy.
# VITE_PUBLIC_BASE_URL=https://localhost:3000
# Observability - Posthog
# See https://app.posthog.com/project/settings
VITE_PUBLIC_POSTHOG_HOST=<posthog host url>
VITE_PUBLIC_POSTHOG_KEY=<***>
VITE_PUBLIC_POSTHOG_DEBUG=<enable debug mode (default: false)>
VITE_PUBLIC_POSTHOG_ENABLED=<enable posthog (default: false)>
# Observability - Posthog sourcemap upload (CI only)
# See https://app.posthog.com/settings/project#variables
POSTHOG_CLI_HOST=<posthog cli host url>
POSTHOG_CLI_PROJECT_ID=<***>
# Personal API key with error tracking write and organization read scopes
# See https://app.posthog.com/settings/user-api-keys#variables
POSTHOG_CLI_TOKEN=<***>
# Auth - Better Auth
# Generate the secret using `openssl rand -base64 32`.
AUTH_SECRET=<***>
AUTH_GITHUB_CLIENT_ID=<***>
AUTH_GITHUB_CLIENT_SECRET=<***>
AUTH_GOOGLE_CLIENT_ID=<***>
AUTH_GOOGLE_CLIENT_SECRET=<***>