22 lines
858 B
Text
Executable file
22 lines
858 B
Text
Executable file
# FamiliarOS public website + auth client env.
|
|
|
|
# SuperTokens self-hosted auth
|
|
# Point these at the Node auth backend (see server/.env.example).
|
|
VITE_SUPERTOKENS_API_DOMAIN=http://localhost:3001
|
|
VITE_SUPERTOKENS_WEBSITE_DOMAIN=http://localhost:5173
|
|
VITE_SUPERTOKENS_API_BASE_PATH=/auth
|
|
VITE_SUPERTOKENS_WEBSITE_BASE_PATH=/auth
|
|
|
|
# Optional email-login API fallback base URL.
|
|
# When SuperTokens is configured this is usually the same as the API domain above.
|
|
VITE_AUTH_API_BASE_URL=http://localhost:3001
|
|
VITE_FAMILIAROS_URL=http://localhost:3001
|
|
|
|
# OAuth provider feature flags.
|
|
# GitHub OAuth is disabled by default while credentials are not configured.
|
|
# The backend needs GITHUB_CLIENT_ID and GITHUB_CLIENT_SECRET (see server/.env.example).
|
|
VITE_GITHUB_OAUTH_ENABLED=false
|
|
|
|
# Request timeouts.
|
|
VITE_AUTH_API_TIMEOUT_MS=8000
|
|
VITE_AUTH_HEALTH_TIMEOUT_MS=6000
|