18 lines
564 B
Plaintext
18 lines
564 B
Plaintext
# NextAuth Configuration
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
NEXTAUTH_SECRET=your-nextauth-secret-here-generate-with-openssl-rand-base64-32
|
|
|
|
# Django REST API Configuration
|
|
NEXT_PUBLIC_API_BASE_URL=http://localhost:8000/api/v1
|
|
|
|
# Google OAuth2 Configuration (optional)
|
|
# Get these from: https://console.cloud.google.com/
|
|
GOOGLE_ID=your-google-client-id
|
|
GOOGLE_SECRET=your-google-client-secret
|
|
|
|
# GitHub OAuth2 Configuration (optional)
|
|
# Get these from: https://github.com/settings/developers
|
|
GITHUB_ID=your-github-client-id
|
|
GITHUB_SECRET=your-github-client-secret
|
|
|