-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path.env.example
More file actions
40 lines (26 loc) · 1.09 KB
/
.env.example
File metadata and controls
40 lines (26 loc) · 1.09 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
# Your GitHub username (
NEXT_PUBLIC_GITHUB_USERNAME="your-github-username"
# whether your available for work or not
NEXT_PUBLIC_AVAILABLE_STATUS=true
# Base URL of your dloyed app
# Example: "https://yourdomain.com"
NEXT_PUBLIC_APP_URL="https://yourdomain.com"
# Umami website ID
NEXT_PUBLIC_UMAMI_WEBSITE_ID="your-umami-site-id"
# 🗄️ PostgreSQL / MySQL / SQLite connection string for Prisma ORM
DATABASE_URL="postgresql://user:password@localhost:5432/your_db_name"
# GitHub OAuth credentials
GITHUB_CLIENT_ID="your-github-client-id"
GITHUB_CLIENT_SECRET="your-github-client-secret"
# Google OAuth credentials
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
# GitHub Personal Access Token
# Example: ghp_XXXXXXXXXXXXXXXXXXXXXXXXXXXX
GITHUB_TOKEN="your-github-access-token"
# Secret key for BetterAuth — used to sign and verify sessions/tokens
BETTER_AUTH_SECRET="your-better-auth-secret"
# URL where BetterAuth API is hosted (usually app URL)
BETTER_AUTH_URL="https://yourdomain.com"
# Umami Admin API Key
UMAMI_API_KEY="your-umami-api-key"