-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
22 lines (18 loc) · 854 Bytes
/
.env.example
File metadata and controls
22 lines (18 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# GitHub OAuth App Credentials
# Get these from: https://github.com/settings/developers
# Create a new OAuth App with:
# - Homepage URL: http://localhost:3000 (for local) or https://your-app.vercel.app (for production)
# - Authorization callback URL: http://localhost:3000/api/auth/callback/github (for local) or https://your-app.vercel.app/api/auth/callback/github (for production)
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
# NextAuth Configuration
# Generate a random secret with: openssl rand -base64 32
NEXTAUTH_SECRET=your_random_secret_here
# NextAuth URL
# For local development: http://localhost:3000
# For production: https://your-app.vercel.app
NEXTAUTH_URL=http://localhost:3000
# Node Environment
# For local development: development
# For production: production
NODE_ENV=development