Highly ambitious ATProtocol AppView service and sdks
1# OAuth Configuration
2# Copy this file to .env and fill in your actual values
3
4# Base URL of your OAuth/Auth server
5VITE_AUTH_BASE_URL=http://localhost:8081
6
7# OAuth Client ID (register your application with the auth server to get this)
8VITE_OAUTH_CLIENT_ID=
9
10# OAuth Client Secret (optional for public clients/SPAs)
11# Note: For SPAs using PKCE, client secret may not be required
12VITE_OAUTH_CLIENT_SECRET=
13
14# OAuth Redirect URIs
15# These should match what's registered with your auth server
16VITE_OAUTH_REDIRECT_URI=http://localhost:3001/oauth/callback
17VITE_OAUTH_SILENT_REDIRECT_URI=http://localhost:3001/silent-refresh