-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.env.example
More file actions
22 lines (16 loc) · 825 Bytes
/
Copy path.env.example
File metadata and controls
22 lines (16 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# MSAL Configuration for Testing
# Replace these values with your actual Azure AD app registration details
# Required: Your Azure AD app registration client ID
VITE_APP_WEB_CLIENT_ID=your-client-id-here
# Required: Your Azure AD tenant authority
VITE_APP_WEB_AUTHORITY=https://login.microsoftonline.com/your-tenant-id
# Optional: Redirect URLs (defaults to current origin)
VITE_APP_REDIRECT_URL=http://localhost:5173
VITE_APP_POST_REDIRECT_URL=http://localhost:5173
# Required: Scopes for login and token acquisition
# Login scope - typically includes your API scope for initial auth
VITE_APP_WEB_SCOPE=api://your-api-id/access_as_user
# Token scope - for accessing your backend API
VITE_APP_API_SCOPE=api://your-backend-api-id/User.Read
# API URL (for when backend is available)
VITE_API_URL=http://localhost:8000/api