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
Copy file name to clipboardExpand all lines: docs/reference/config.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ The system uses two configuration files:
12
12
13
13
| File | Location | Purpose |
14
14
|------|----------|---------|
15
-
|`config.json`|Server root| Server configuration, repositories |
15
+
|`config.json`|`~/.claude-review/` (created by `reviewflow init`)| Server configuration, repositories |
16
16
|`.claude/reviews/config.json`| Each project | Project-specific review settings |
17
17
18
18
---
@@ -21,14 +21,14 @@ The system uses two configuration files:
21
21
22
22
### Location
23
23
24
-
`config.json` in the server's root directory (or `config.example.json` as template).
24
+
`~/.claude-review/config.json`, created automatically by `reviewflow init`.
25
25
26
26
### Schema
27
27
28
28
```json
29
29
{
30
30
"server": {
31
-
"port": 3000
31
+
"port": 3847
32
32
},
33
33
"user": {
34
34
"gitlabUsername": "your-gitlab-username",
@@ -57,7 +57,7 @@ The system uses two configuration files:
57
57
58
58
| Field | Type | Default | Description |
59
59
|-------|------|---------|-------------|
60
-
|`port`| number |`3000`| HTTP server port |
60
+
|`port`| number |`3847`| HTTP server port |
61
61
62
62
#### `user`
63
63
@@ -169,7 +169,7 @@ The automation server creates these files in `.claude/reviews/`:
169
169
170
170
## Validation
171
171
172
-
Configuration files are validated at startup. Common errors: missing required fields, invalid model name (use `"sonnet"` or `"opus"`), nonexistent `localPath`, or missing skill file in `.claude/skills/`.
172
+
Configuration files are validated at startup. Run `reviewflow validate` to check your configuration without starting the server. Common errors: missing required fields, invalid model name (use `"sonnet"` or `"opus"`), nonexistent `localPath`, or missing skill file in `.claude/skills/`.
0 commit comments