35 lines
No EOL
1.2 KiB
Text
35 lines
No EOL
1.2 KiB
Text
LOG_LEVEL=info
|
|
# FORCE_ONBOARDING=true
|
|
|
|
# Apple Notarization Configuration (for macOS builds)
|
|
# APPLE_ID=your.email@example.com
|
|
# APPLE_APP_PASSWORD=xxxx-xxxx-xxxx-xxxx
|
|
# APPLE_TEAM_ID=XXXXXXXXXX
|
|
# CODESIGNING_IDENTITY="Developer ID Application: Your Company (XXXXXXXXXX)"
|
|
|
|
# Skip code signing for development (optional)
|
|
# SKIP_CODESIGNING=true
|
|
|
|
# Skip notarization only (still code sign) for faster builds
|
|
# SKIP_NOTARIZATION=true
|
|
|
|
# Telemetry
|
|
TELEMETRY_ENABLED=true
|
|
POSTHOG_HOST=https://app.posthog.com
|
|
POSTHOG_API_KEY=your-posthog-api-key
|
|
FEEDBACK_SURVEY_ID=your-posthog-survey-id
|
|
|
|
# OAuth Configuration
|
|
# Required for Amical Cloud transcription
|
|
# Redirect URL to configure in your OIDC provider: amical://oauth/callback
|
|
AUTH_CLIENT_ID=your-oauth-client-id
|
|
|
|
# Optional: Override OAuth endpoints (defaults are automatic based on NODE_ENV)
|
|
# Development defaults (NODE_ENV=development):
|
|
# Authorization: http://localhost:5001/api/auth/oauth2/authorize
|
|
# Token: http://localhost:5001/api/auth/oauth2/token
|
|
# Production defaults:
|
|
# Authorization: https://login.amical.ai/authorize
|
|
# Token: https://api.amical.ai/api/auth/oauth2/token
|
|
# AUTHORIZATION_ENDPOINT=https://your-auth-server.com/authorize
|
|
# AUTH_TOKEN_ENDPOINT=https://your-auth-server.com/token |