env example updated

This commit is contained in:
George Antonopoulos
2025-06-02 17:41:08 +01:00
parent 00754b21c3
commit 1d856c0899
2 changed files with 16 additions and 15 deletions

View File

@@ -1,15 +0,0 @@
# Basic Auth credentials (for direct API access)
BASECAMP_USERNAME=your-email@example.com
BASECAMP_PASSWORD=your-password
BASECAMP_ACCOUNT_ID=your-account-id # Find this in your Basecamp 3 URL: https://3.basecamp.com/ACCOUNT_ID/...
USER_AGENT=YourApp (your-email@example.com)
# OAuth credentials (for Google Auth / SSO)
BASECAMP_CLIENT_ID=your-client-id
BASECAMP_CLIENT_SECRET=your-client-secret
BASECAMP_REDIRECT_URI=http://localhost:8000/auth/callback
FLASK_SECRET_KEY=your-flask-secret-key
# OAuth tokens (filled automatically by the app)
BASECAMP_ACCESS_TOKEN=
BASECAMP_REFRESH_TOKEN=

16
.env_example Normal file
View File

@@ -0,0 +1,16 @@
# Basecamp OAuth Application Credentials
# Create your OAuth app at: https://launchpad.37signals.com/integrations
BASECAMP_CLIENT_ID=your_client_id_here
BASECAMP_CLIENT_SECRET=your_client_secret_here
BASECAMP_REDIRECT_URI=http://localhost:8000/auth/callback
# Basecamp Account Information
# Find this in your Basecamp 3 URL: https://3.basecamp.com/4389629/projects (the number is your account ID)
BASECAMP_ACCOUNT_ID=your_account_id_here
# User Agent (required by Basecamp API)
USER_AGENT="Your App Name (your@email.com)"
# Application Secrets
FLASK_SECRET_KEY=your_random_secret_key_here
MCP_API_KEY=your_random_api_key_here