# ClickUp API Authentication
# You only need one of the following authentication methods:
# Option 1: API Token (Simplest)
# Get this from your ClickUp workspace settings > Apps
CLICKUP_API_TOKEN=your_api_token_here
# Option 2: OAuth (More Secure)
# Get these by creating an app at https://clickup.com/api/developer/
# Then run scripts/get-access-token.js to get an access token
CLICKUP_CLIENT_ID=your_client_id_here
CLICKUP_CLIENT_SECRET=your_client_secret_here
# Optional Configuration
# Uncomment and modify as needed
# Base URL for the ClickUp API (default: https://api.clickup.com/api/v2)
# CLICKUP_API_BASE_URL=https://api.clickup.com/api/v2