-
-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy path.env.example
29 lines (24 loc) · 1.05 KB
/
.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
# App
NEXT_PUBLIC_APP_URL="http://localhost:3000"
NEXT_SERVER_APP_URL="http://localhost:3000"
# Database
# https://console.neon.tech/app/projects
DATABASE_URL="postgresql://postgres:password@localhost:5432/db"
# Authentication
# bunx randomstring length=32
AUTH_SECRET="your-auth-secret-key-at-least-32-chars"
# https://github.com/settings/developers
# https://example.com/api/auth/callback/github
AUTH_GITHUB_ID="your-github-client-id"
AUTH_GITHUB_SECRET="your-github-client-secret"
# https://console.cloud.google.com/apis/credentials
# Create credentials > OAuth client ID
# Authorized JavaScript origins: https://example.com && http://localhost:3000
# Authorized redirect URIs: https://example.com/api/auth/callback/google && http://localhost:3000/api/auth/callback/google
AUTH_GOOGLE_ID="your-google-client-id"
AUTH_GOOGLE_SECRET="your-google-client-secret"
# Instructions:
# 1. Copy .env.example file to .env
# 2. Replace the values with your own credentials
# 3. Restart your development server if it's running
# 4. Remember to never share .env file/keys with anyone