-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
18 lines (15 loc) · 735 Bytes
/
.env.example
File metadata and controls
18 lines (15 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copy this file to `.env` (which is ignored by Git) and fill in your real credentials.
# Example usage for the backend: load these values with python-dotenv or your preferred config loader.
# HubSpot OAuth app settings
HUBSPOT_CLIENT_ID=your-hubspot-client-id
HUBSPOT_CLIENT_SECRET=your-hubspot-client-secret
HUBSPOT_REDIRECT_URI=http://localhost:8000/integrations/hubspot/oauth2callback
HUBSPOT_SCOPE="crm.objects.contacts.read crm.objects.companies.read crm.objects.deals.read"
# Optional: pre-provisioned tokens for manual testing (leave blank if not used)
HUBSPOT_ACCESS_TOKEN=
HUBSPOT_ACCESS_TOKEN_EXPIRES_AT=
HUBSPOT_PERSONAL_ACCESS_KEY=
# Redis configuration for token caching
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0