-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.example
40 lines (30 loc) · 969 Bytes
/
env.example
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
# Auth.js secret - you can generate one using `openssl rand -base64 32`
AUTH_SECRET=""
# Vercel KV (if you're using it)
AUTH_KV_REST_API_URL="your-kv-url"
AUTH_KV_REST_API_TOKEN="your-kv-token"
# GitHub Provider
AUTH_GITHUB_ID=""
AUTH_GITHUB_SECRET=""
# Google Provider
AUTH_GOOGLE_ID=""
AUTH_GOOGLE_SECRET=""
# Discord Provider
AUTH_DISCORD_ID="your-discord-client-id"
AUTH_DISCORD_SECRET="your-discord-client-secret"
# Coinbase Provider
AUTH_COINBASE_ID="your-coinbase-client-id"
AUTH_COINBASE_SECRET="your-coinbase-client-secret"
# Reddit Provider
AUTH_REDDIT_ID="your-reddit-client-id"
AUTH_REDDIT_SECRET="your-reddit-client-secret"
# Slack Provider
AUTH_SLACK_ID="your-slack-client-id"
AUTH_SLACK_SECRET="your-slack-client-secret"
# Twitter Provider
AUTH_TWITTER_ID="your-twitter-client-id"
AUTH_TWITTER_SECRET="your-twitter-client-secret"
# Debug mode (optional)
AUTH_DEBUG="true"
# change it later for product env
NEXTAUTH_URL="http://localhost:3000"