-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.example
More file actions
46 lines (34 loc) · 1.29 KB
/
.env.example
File metadata and controls
46 lines (34 loc) · 1.29 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
# Client-side Base URL (optional - defaults to current origin in production)
VITE_BASE_URL="http://localhost:3000"
# Deployment Configuration
# Choose one of: netlify, vercel, cloudflare-pages, node-server, bun
# Leave empty for default (no specific target)
VITE_DEPLOYMENT_TARGET=
# Database URL
# -------------------------------------------------
DATABASE_URL="postgresql://user:password@localhost:5432/ex0"
# Better Auth
# -------------------------------------------------
BETTER_AUTH_SECRET="your-secret-key-here"
# E-MAIL Configuration
# -------------------------------------------------
## GENERAL
VITE_ENABLE_EMAIL_VERIFICATION="true"
ENABLE_EMAIL_VERIFICATION="true"
EMAIL_FROM="noreply@example.org"
## Email Provider Configuration
EMAIL_PROVIDER="mailhog" # Options: console, mailhog, smtp, resend
## RESEND
RESEND_API_KEY="your-api-key"
# OAuth Providers (optional)
# -------------------------------------------------
## Github Login
VITE_GITHUB_CLIENT_ID="your-github-client-id"
GITHUB_CLIENT_ID="your-github-client-id"
GITHUB_CLIENT_SECRET="your-github-client-secret"
## Google Login
VITE_GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
TEST_BASE_URL="http://localhost:3000"
# Add other environment variables here