From 87b2613fb453936df3ed61fdb15f803169f6aef2 Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Mon, 3 Mar 2025 23:48:47 +0530 Subject: [PATCH 1/2] feat: add AIRTABLE_CLIENT_ID --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 13c994a0..0a3cb3b1 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca | `GOOGLE_CLIENT_ID` | No | Client ID for Google OAuth, used for Google Sheet integration authentication. | Google login will not work. | | `GOOGLE_CLIENT_SECRET`| No | Client Secret for Google OAuth. | Google login will not work. | | `GOOGLE_REDIRECT_URI` | No | Redirect URI for handling Google OAuth responses. | Google login will not work. | +| `AIRTABLE_CLIENT_ID` | No | Client ID for Airtable, used for Airtable integration authentication. | Airtable will not work. | | `REDIS_HOST` | Yes | Host address of the Redis server, used by BullMQ for scheduling robots. | Redis connection will fail. | | `REDIS_PORT` | Yes | Port number for the Redis server. | Redis connection will fail. | | `MAXUN_TELEMETRY` | No | Disables telemetry to stop sending anonymous usage data. Keeping it enabled helps us understand how the product is used and assess the impact of any new changes. Please keep it enabled. | Telemetry data will not be collected. | From 5af53017a1e37efa6f64d5ab8b4d9621d0156d2b Mon Sep 17 00:00:00 2001 From: Karishma Shukla Date: Mon, 3 Mar 2025 23:50:20 +0530 Subject: [PATCH 2/2] feat: add AIRTABLE_REDIRECT_URI --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a3cb3b1..3470a4ee 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,8 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca | `GOOGLE_CLIENT_ID` | No | Client ID for Google OAuth, used for Google Sheet integration authentication. | Google login will not work. | | `GOOGLE_CLIENT_SECRET`| No | Client Secret for Google OAuth. | Google login will not work. | | `GOOGLE_REDIRECT_URI` | No | Redirect URI for handling Google OAuth responses. | Google login will not work. | -| `AIRTABLE_CLIENT_ID` | No | Client ID for Airtable, used for Airtable integration authentication. | Airtable will not work. | +| `AIRTABLE_CLIENT_ID` | No | Client ID for Airtable, used for Airtable integration authentication. | Airtable login will not work. | +| `AIRTABLE_REDIRECT_URI` | No | Redirect URI for handling Airtable OAuth responses. | Airtable login will not work. | | `REDIS_HOST` | Yes | Host address of the Redis server, used by BullMQ for scheduling robots. | Redis connection will fail. | | `REDIS_PORT` | Yes | Port number for the Redis server. | Redis connection will fail. | | `MAXUN_TELEMETRY` | No | Disables telemetry to stop sending anonymous usage data. Keeping it enabled helps us understand how the product is used and assess the impact of any new changes. Please keep it enabled. | Telemetry data will not be collected. |