-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
64 lines (56 loc) · 2.8 KB
/
Copy path.env.example
File metadata and controls
64 lines (56 loc) · 2.8 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
# =============================================================================
# ENVIRONMENT CONFIGURATION
# =============================================================================
# Copy this file to .env.local and fill in your actual values
# Never commit .env.local to version control
# =============================================================================
# APPLICATION
# =============================================================================
NODE_ENV=development
NEXT_PUBLIC_BASE_URL=http://localhost:3000
# =============================================================================
# GITHUB
# =============================================================================
GITHUB_TOKEN=your-github-personal-access-token
GITHUB_USERNAME=your-github-username
GITHUB_API_URL=https://api.github.com
# =============================================================================
# WAKATIME
# =============================================================================
# Get your API key from https://wakatime.com/settings/account
WAKATIME_API_KEY=your-wakatime-api-key
WAKATIME_USERNAME=your-wakatime-username
# =============================================================================
# SPOTIFY
# =============================================================================
# Get credentials from https://developer.spotify.com/dashboard
SPOTIFY_CLIENT_ID=your-spotify-client-id
SPOTIFY_CLIENT_SECRET=your-spotify-client-secret
SPOTIFY_REFRESH_TOKEN=your-spotify-refresh-token
SPOTIFY_CODE=your-spotify-authorization-code
# =============================================================================
# CONTACT FORM
# =============================================================================
# Get API key from https://web3forms.com
CONTACT_FORM_API_KEY=your-web3forms-api-key
# Get site key from https://www.hcaptcha.com
HCAPTCHA_SITE_KEY=your-hcaptcha-site-key
# =============================================================================
# UMAMI ANALYTICS
# =============================================================================
# Get your credentials from https://umami.is or self-hosted instance
UMAMI_API_CLIENT_USER_ID=your-umami-user-id
UMAMI_SHARE_URL=your-umami-share-url
UMAMI_WEBSITE_ID=your-umami-website-id
UMAMI_API_KEY=your-umami-api-key
UMAMI_API_CLIENT_ENDPOINT=https://cloud.umami.is
# =============================================================================
# AI/LLM (For Chat Feature)
# =============================================================================
# Get API key from https://dashboard.cohere.com/
COHERE_API_KEY=your-cohere-api-key
# =============================================================================
# BUILD TOOLS
# =============================================================================
# Set to 'true' to enable Next.js bundle analyzer
ANALYZE=false