Skip to content

Commit 722559f

Browse files
committed
fix: feedbacks
1 parent 2d73264 commit 722559f

File tree

1 file changed

+9
-20
lines changed

1 file changed

+9
-20
lines changed

README.md

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -146,15 +146,15 @@ This section provides a comprehensive reference for all Parse Dashboard configur
146146

147147
#### Root Configuration Keys
148148

149-
| Key | Type | Required | Description | Links to Details |
150-
|-----|------|----------|-------------|------------------|
151-
| `apps` | Array<Object> | Yes | Array of Parse Server apps to manage | [App Configuration](#app-configuration-apps-array) |
152-
| `users` | Array<Object> | No | User accounts for dashboard authentication | [User Configuration](#user-configuration-users) |
153-
| `useEncryptedPasswords` | Boolean | No | Use bcrypt hashes instead of plain text passwords | [Global Configuration](#global-configuration) |
154-
| `trustProxy` | Boolean \| Number | No | Trust X-Forwarded-* headers when behind proxy | [Global Configuration](#global-configuration) |
155-
| `iconsFolder` | String | No | Folder for app icons (relative or absolute path) | [Global Configuration](#global-configuration) |
156-
| `agent` | Object | No | AI agent configuration | [AI Agent Configuration](#ai-agent) |
157-
| `enableResourceCache` | Boolean | No | Enable browser caching of dashboard resources | [Global Configuration](#global-configuration) |
149+
| Key | Type | Required | Default | CLI | Env Variable | Example | Description | Links to Details |
150+
|-----|------|----------|---------|-----|--------------|---------|-------------|------------------|
151+
| `apps` | Array<Object> | Yes | - | - | `PARSE_DASHBOARD_CONFIG` | `[{...}]` | Array of Parse Server apps to manage | [App Configuration](#app-configuration-apps-array) |
152+
| `users` | Array<Object> | No | - | - | - | `[{...}]` | User accounts for dashboard authentication | [User Configuration](#user-configuration-users) |
153+
| `useEncryptedPasswords` | Boolean | No | `false` | - | - | `true` | Use bcrypt hashes instead of plain text passwords | - |
154+
| `trustProxy` | Boolean \| Number | No | `false` | `--trustProxy` | `PARSE_DASHBOARD_TRUST_PROXY` | `1` | Trust X-Forwarded-* headers when behind proxy | - |
155+
| `iconsFolder` | String | No | - | - | - | `"icons"` | Folder for app icons (relative or absolute path) | - |
156+
| `agent` | Object | No | - | - | `PARSE_DASHBOARD_AGENT` (JSON) | `{...}` | AI agent configuration | [AI Agent Configuration](#ai-agent) |
157+
| `enableResourceCache` | Boolean | No | `false` | - | - | `true` | Enable browser caching of dashboard resources | - |
158158

159159
#### Configuration File Options
160160

@@ -223,17 +223,6 @@ Each class in `columnPreference` can have an array of column configurations:
223223
| `prefetchObjects` | Number | yes | `0` | `2` | Number of next rows to prefetch. |
224224
| `prefetchStale` | Number | yes | `0` | `10` | Seconds after which prefetched data is stale. |
225225

226-
##### Global Configuration
227-
228-
| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
229-
| ------------------------|---------------------|----------|---------|----------------|--------------------------------|-----------| --------------------------------------------------------------------------------------|
230-
| `apps` | Array<Object> | no | - | - | `PARSE_DASHBOARD_CONFIG` | `[{...}]` | Array of apps to manage. |
231-
| `users` | Array<Object> | yes | - | - | - | `[{...}]` | User accounts for authentication. See [users table below](#user-configuration-users). |
232-
| `useEncryptedPasswords` | Boolean | yes | `false` | - | - | `true` | Use bcrypt hashes instead of plain text passwords. |
233-
| `trustProxy` | Boolean \| Number | yes | `false` | `--trustProxy` | `PARSE_DASHBOARD_TRUST_PROXY` | `1` | Trust X-Forwarded-\* headers when behind proxy. |
234-
| `iconsFolder` | String | yes | - | - | - | `"icons"` | Folder for app icons (relative or absolute path). |
235-
| `agent` | Object | yes | - | - | `PARSE_DASHBOARD_AGENT` (JSON) | `{...}` | AI agent config. See [agent table below](#configuration). |
236-
| `enableResourceCache` | Boolean | yes | `false` | - | - | `true` | Enable browser caching of dashboard resources. |
237226

238227
##### User Configuration (`users[]`)
239228

0 commit comments

Comments
 (0)