From 0dc2c5545839b247c619d835fd61a29519c3602f Mon Sep 17 00:00:00 2001 From: Karishma Date: Sun, 30 Mar 2025 17:58:44 +0530 Subject: [PATCH 01/10] feat: remove REDIS_PASSWORD --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac1a09ca..3af11a0f 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca | `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. | -| `REDIS_PASSWORD` | No | Password for Redis Authentication. Needed to authenticate with a password-protected Redis instance; | Redis will attempt to connect without authentication. | + | `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 5948c57050278e4bd46d332490246a0dfafef2f9 Mon Sep 17 00:00:00 2001 From: Karishma Date: Sun, 30 Mar 2025 17:59:09 +0530 Subject: [PATCH 02/10] feat: remove REDIS_PORT --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 3af11a0f..fe33c75e 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,6 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca | `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. | From f733f7331dc030035cd56e5e3b85626980342793 Mon Sep 17 00:00:00 2001 From: Karishma Date: Sun, 30 Mar 2025 17:59:40 +0530 Subject: [PATCH 03/10] feat: remove REDIS_HOST --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index fe33c75e..756d400d 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,6 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca | `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 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. | | `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 b859ee6d9b6ba8a8bf1e7ab44266793999c6e1f8 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:18:18 +0530 Subject: [PATCH 04/10] feat: remove redis --- docker-compose.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index b571cc6f..92ba55a5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,16 +17,6 @@ services: timeout: 5s retries: 5 - redis: - image: redis:6 - environment: - REDIS_HOST: ${REDIS_HOST} - REDIS_PORT: ${REDIS_PORT} - ports: - - "${REDIS_PORT:-6379}:${REDIS_PORT:-6379}" - volumes: - - redis_data:/data - minio: image: minio/minio environment: From 5d2b26d9c0a8c41d7741fa08c39ee1e160876829 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:18:52 +0530 Subject: [PATCH 05/10] feat: remove redis from depends_on --- docker-compose.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 92ba55a5..05cba63a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -51,7 +51,6 @@ services: mem_limit: 2g # Set a 2GB memory limit depends_on: - postgres - - redis - minio volumes: - /var/run/dbus:/var/run/dbus From be97682d62733894e7f97939315ce873f8ee5681 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:19:16 +0530 Subject: [PATCH 06/10] feat: remove redis_data from volumes --- docker-compose.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 05cba63a..e57792ae 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -71,5 +71,4 @@ services: volumes: postgres_data: - minio_data: - redis_data: \ No newline at end of file + minio_data: \ No newline at end of file From 61242928990c3339fc4e9355f9d269236eddec8e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:32:12 +0530 Subject: [PATCH 07/10] chore: uninstall bullmq --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index efa61130..2279c772 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,6 @@ "bcrypt": "^5.1.1", "body-parser": "^1.20.3", "buffer": "^6.0.3", - "bullmq": "^5.12.15", "connect-pg-simple": "^10.0.0", "connect-redis": "^8.0.1", "cookie-parser": "^1.4.6", From e18626da293f61312618548fe73ec20699d28180 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:32:35 +0530 Subject: [PATCH 08/10] chore: uninstall redis --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 2279c772..fd4ce29a 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,6 @@ "react-router-dom": "^6.26.1", "react-simple-code-editor": "^0.11.2", "react-transition-group": "^4.4.2", - "redis": "^4.7.0", "sequelize": "^6.37.3", "sequelize-typescript": "^2.1.6", "sharp": "^0.33.5", From 48ff8c83ed0c4f16c30e5f95307e25ba6670e15a Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:33:00 +0530 Subject: [PATCH 09/10] chore: uninstall connect-redis --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index fd4ce29a..a4d11f7f 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,6 @@ "body-parser": "^1.20.3", "buffer": "^6.0.3", "connect-pg-simple": "^10.0.0", - "connect-redis": "^8.0.1", "cookie-parser": "^1.4.6", "cors": "^2.8.5", "cron-parser": "^4.9.0", From 0aac7f1b2d8a3e5aec6dc01f39a5b061dfe32299 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Sat, 5 Apr 2025 18:33:38 +0530 Subject: [PATCH 10/10] chore: uninstall @types/redis --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index a4d11f7f..876fa45b 100644 --- a/package.json +++ b/package.json @@ -118,7 +118,6 @@ "@types/prismjs": "^1.26.0", "@types/react-highlight": "^0.12.5", "@types/react-transition-group": "^4.4.4", - "@types/redis": "^4.0.11", "@types/styled-components": "^5.1.23", "@types/swagger-jsdoc": "^6.0.4", "@types/swagger-ui-express": "^4.1.6",