diff --git a/README.md b/README.md index ac1a09ca..756d400d 100644 --- a/README.md +++ b/README.md @@ -104,9 +104,7 @@ 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. | -| `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. | diff --git a/docker-compose.yml b/docker-compose.yml index b571cc6f..e57792ae 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: @@ -61,7 +51,6 @@ services: mem_limit: 2g # Set a 2GB memory limit depends_on: - postgres - - redis - minio volumes: - /var/run/dbus:/var/run/dbus @@ -82,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 diff --git a/package.json b/package.json index efa61130..876fa45b 100644 --- a/package.json +++ b/package.json @@ -27,9 +27,7 @@ "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", "cors": "^2.8.5", "cron-parser": "^4.9.0", @@ -72,7 +70,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", @@ -121,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",