diff --git a/docker/.env.example b/docker/.env.example index 766f92dcc..8345e7dd7 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -208,6 +208,11 @@ STT_SERVICE=local/base # TEAMS_CLIENT_SECRET= # TEAMS_REDIRECT_URI=http://localhost:8000/api/v1/auth/teams/connector/callback +# -- Microsoft OneDrive -- +# ONEDRIVE_CLIENT_ID= +# ONEDRIVE_CLIENT_SECRET= +# ONEDRIVE_REDIRECT_URI=http://localhost:8000/api/v1/auth/onedrive/connector/callback + # -- Composio -- # COMPOSIO_API_KEY= # COMPOSIO_ENABLED=TRUE diff --git a/surfsense_backend/.env.example b/surfsense_backend/.env.example index 94d5c8c9b..7a0b095e2 100644 --- a/surfsense_backend/.env.example +++ b/surfsense_backend/.env.example @@ -95,11 +95,16 @@ SLACK_CLIENT_ID=your_slack_client_id_here SLACK_CLIENT_SECRET=your_slack_client_secret_here SLACK_REDIRECT_URI=http://localhost:8000/api/v1/auth/slack/connector/callback -# Teams OAuth Configuration +# Microsoft Teams OAuth Configuration TEAMS_CLIENT_ID=your_teams_client_id_here TEAMS_CLIENT_SECRET=your_teams_client_secret_here TEAMS_REDIRECT_URI=http://localhost:8000/api/v1/auth/teams/connector/callback +# Microsoft OneDrive OAuth +ONEDRIVE_CLIENT_ID=your_onedrive_client_id_here +ONEDRIVE_CLIENT_SECRET=your_onedrive_client_secret_here +ONEDRIVE_REDIRECT_URI=http://localhost:8000/api/v1/auth/onedrive/connector/callback + # Composio Connector # NOTE: Disable "Mask Connected Account Secrets" in Composio dashboard (Settings → Project Settings) for Google indexing to work. COMPOSIO_API_KEY=your_api_key_here