semblance_backup/.env.production
michael 30d5cf7702 Add environment variable to control local login availability
Add VITE_ENABLE_LOCAL_LOGIN env variable to conditionally show/hide
local username/password login on the login screen. When set to 'false'
(production), only Microsoft login is shown. When 'true' (development),
both options are available.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-08 14:20:50 -06:00

16 lines
No EOL
622 B
Text

# Production Environment Configuration
# Frontend URL (production server)
VITE_FRONTEND_BASE_URL=https://ai-sandbox.oliver.solutions/semblance
# Backend API URL (production server)
VITE_API_BASE_URL=https://ai-sandbox.oliver.solutions/semblance_back/api
# WebSocket path (production server)
VITE_WEBSOCKET_PATH=/semblance_back/socket.io/
# MSAL Authentication (production server)
VITE_MSAL_REDIRECT_URI=https://ai-sandbox.oliver.solutions/semblance
VITE_MSAL_POST_LOGOUT_REDIRECT_URI=https://ai-sandbox.oliver.solutions/semblance
# Local login (username/password) - disable for production
VITE_ENABLE_LOCAL_LOGIN=false