From 1d856c0899ef7fce99433b1f0bc80c606e22ffdd Mon Sep 17 00:00:00 2001 From: George Antonopoulos Date: Mon, 2 Jun 2025 17:41:08 +0100 Subject: [PATCH] env example updated --- .env.example | 15 --------------- .env_example | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 15 deletions(-) delete mode 100644 .env.example create mode 100644 .env_example diff --git a/.env.example b/.env.example deleted file mode 100644 index 2e3ee58..0000000 --- a/.env.example +++ /dev/null @@ -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= \ No newline at end of file diff --git a/.env_example b/.env_example new file mode 100644 index 0000000..6126cea --- /dev/null +++ b/.env_example @@ -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 \ No newline at end of file