20 lines
No EOL
687 B
Text
20 lines
No EOL
687 B
Text
# Google Gemini API Key
|
|
# Get your API key from: https://makersuite.google.com/app/apikey
|
|
VITE_GEMINI_API_KEY=AIzaSyDs7EKdC9NLM5UqWlGUqeQO96TmSA-kos8
|
|
|
|
# Frontend Port Configuration
|
|
VITE_FRONTEND_PORT=3000
|
|
|
|
# Backend Port Configuration
|
|
VITE_BACKEND_PORT=5015
|
|
|
|
# Image Generation Backend
|
|
# The PHP backend must be running for image generation to work
|
|
# Start it with: cd backend && php -S localhost:5015
|
|
# Vite will proxy /api/* requests to this server
|
|
|
|
# Azure AD SSO Configuration
|
|
# Register your app at: https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps
|
|
VITE_SSO_TENANT_ID=your_tenant_id_here
|
|
VITE_SSO_CLIENT_ID=your_client_id_here
|
|
VITE_SSO_REDIRECT_URI=http://localhost:3000 |