baic_dashboard/.env.example

29 lines
956 B
Text

# Domain Configuration
# The domain where your application will be deployed (without protocol)
DOMAIN=yourdomain.com
# The base path for the application (must start and end with /)
BASE_PATH=/dashboard/
# Azure AD Configuration
# Get these values from your Azure AD app registration
# Portal: https://portal.azure.com > Azure Active Directory > App registrations
AZURE_TENANT_ID=your-tenant-id-here
AZURE_CLIENT_ID=your-client-id-here
# Backend Configuration
# Port on which the backend server will run
BACKEND_PORT=5001
# Make.com Webhook
# The webhook URL that provides your data
MAKE_WEBHOOK_URL=https://hook.eu1.make.celonis.com/your-webhook-id
# Frontend Build Configuration (used by Vite)
# These VITE_ prefixed variables are embedded at build time
# They should match the values above
VITE_DOMAIN=yourdomain.com
VITE_BASE_PATH=/dashboard/
VITE_BACKEND_PORT=5001
VITE_AZURE_TENANT_ID=your-tenant-id-here
VITE_AZURE_CLIENT_ID=your-client-id-here