-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
46 lines (36 loc) · 1.42 KB
/
.env.example
File metadata and controls
46 lines (36 loc) · 1.42 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
# ============================================
# Tijori Environment Variables
# ============================================
# CONVEX CONFIGURATION
# --------------------
# Used by `npx convex dev` CLI
CONVEX_DEPLOYMENT=anonymous:anonymous-tijori
# Frontend connects to Convex at this URL
VITE_CONVEX_URL=http://127.0.0.1:3210
# Server-side Convex URL (for SSR)
CONVEX_URL=http://127.0.0.1:3210
# CLERK AUTHENTICATION
# --------------------
# Frontend: Publishable key (public)
VITE_CLERK_PUBLISHABLE_KEY=<your-clerk-publishable-key>
# Server-side: Secret key
CLERK_SECRET_KEY=<your-clerk-secret-key>
# JWT Issuer Domain for Convex auth
# Found in Clerk Dashboard → API Keys (or JWT Templates)
# Example: https://your-instance.clerk.accounts.dev
CLERK_JWT_ISSUER_DOMAIN=<your-clerk-jwt-issuer-domain>
# your Clerk webhook signing secret
CLERK_WEBHOOK_SIGNING_SECRET=<your-clerk-webhook-signing-secret>
# SUPPORT CONFIGURATION
# ---------------------
# Email shown to users when their account is pending deletion
VITE_SUPPORT_EMAIL=support@example.com
# ============================================
# CONVEX ENVIRONMENT VARIABLES (set via CLI)
# ============================================
# These must be set in the Convex deployment, not in this file!
#
# Run: bunx convex env set CLERK_JWT_ISSUER_DOMAIN "https://..."
#
# Convex functions run in an isolated runtime and cannot access
# variables from .env.local - they must be set via the CLI.