-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathenv.example
More file actions
30 lines (23 loc) · 1.09 KB
/
env.example
File metadata and controls
30 lines (23 loc) · 1.09 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
# Kinde Management API Configuration
# Copy this file to .env and fill in your actual values
# Your Kinde domain (e.g., https://your-domain.kinde.com)
KINDE_DOMAIN=https://your-domain.kinde.com
# Management API credentials (preferred for Management API operations)
# These will be used first if available, otherwise falls back to regular credentials
KINDE_MANAGEMENT_CLIENT_ID=your_management_client_id_here
KINDE_MANAGEMENT_CLIENT_SECRET=your_management_client_secret_here
# Regular Kinde application credentials (fallback)
# Used if Management API credentials are not provided
KINDE_CLIENT_ID=your_client_id_here
KINDE_CLIENT_SECRET=your_client_secret_here
# Optional: Pre-existing management access token (if you have one)
# KINDE_MANAGEMENT_ACCESS_TOKEN=your_existing_token_here
# OAuth Configuration
KINDE_REDIRECT_URI=http://localhost:8000/auth/callback
KINDE_GRANT_TYPE=authorization_code
KINDE_LOGOUT_REDIRECT_URI=http://localhost:8000
KINDE_SCOPES=openid profile email offline
KINDE_PROTOCOL=https
KINDE_ISSUER_URL=https://your-domain.kinde.com
# Optional: Logger configuration
# logger.threshold = 4