You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DB_PORT=5432 # Port for PostgreSQL (default: 5432)
9
9
ENCRYPTION_KEY=f4d5e6a7b8c9d0e1f23456789abcdef01234567890abcdef123456789abcdef0 # Key for encrypting sensitive data (passwords and proxies)
10
+
SESSION_SECRET=maxun_session # A strong, random string used to sign session cookies. Recommended to define your own session secret to avoid session hijacking.
11
+
10
12
MINIO_ENDPOINT=minio # MinIO endpoint in Docker
11
13
MINIO_PORT=9000 # Port for MinIO (default: 9000)
12
14
MINIO_CONSOLE_PORT=9001 # Web UI Port for MinIO (default: 9001)
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,7 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca
98
98
|`DB_HOST`| Yes | Host address where the Postgres database server is running. | Database connection will fail. |
99
99
|`DB_PORT`| Yes | Port number used to connect to the Postgres database server. | Database connection will fail. |
100
100
|`ENCRYPTION_KEY`| Yes | Key used for encrypting sensitive data (proxies, passwords). | Encryption functionality will not work. |
101
+
|`SESSION_SECRET`| No | A strong, random string used to sign session cookies | Uses default secret. Recommended to define your own session secret to avoid session hijacking. |
101
102
|`MINIO_ENDPOINT`| Yes | Endpoint URL for MinIO, to store Robot Run Screenshots. | Connection to MinIO storage will fail. |
102
103
|`MINIO_PORT`| Yes | Port number for MinIO service. | Connection to MinIO storage will fail. |
103
104
|`MINIO_CONSOLE_PORT`| No | Port number for MinIO WebUI service. Needed for Docker setup. | Cannot access MinIO Web UI. |
@@ -107,7 +108,6 @@ You can access the frontend at http://localhost:5173/ and backend at http://loca
107
108
|`GOOGLE_REDIRECT_URI`| No | Redirect URI for handling Google OAuth responses. | Google login will not work. |
108
109
|`AIRTABLE_CLIENT_ID`| No | Client ID for Airtable, used for Airtable integration authentication. | Airtable login will not work. |
109
110
|`AIRTABLE_REDIRECT_URI`| No | Redirect URI for handling Airtable OAuth responses. | Airtable login will not work. |
110
-
111
111
|`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. |
0 commit comments