-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusync.json.example
More file actions
49 lines (49 loc) · 1.36 KB
/
docusync.json.example
File metadata and controls
49 lines (49 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"repositories": [
{
"github_path": "acme-corp/api-gateway",
"docs_path": "docs",
"display_name": "API Gateway",
"position": 1,
"description": "Central API gateway documentation",
"ssh_key_path": "~/.ssh/acme_corp_key"
},
{
"github_path": "another-org/user-service",
"docs_path": "documentation",
"display_name": "User Service",
"position": 2,
"description": "User management and authentication service",
"protocol": "https",
"pat_token_env": "ANOTHER_ORG_PAT_TOKEN"
},
{
"github_path": "partner-org/billing-service",
"docs_path": "docs",
"display_name": "Billing Service",
"position": 3,
"description": "Partner organization billing service",
"protocol": "ssh",
"ssh_key_path": "~/.ssh/partner_org_key"
},
{
"github_path": "acme-corp/payment-processor",
"docs_path": "docs",
"display_name": "Payment Processor",
"position": 4,
"description": "Payment processing and billing documentation",
"protocol": "https"
}
],
"paths": {
"temp_dir": ".temp-repos",
"docs_dir": "docs"
},
"git": {
"clone_depth": 1,
"default_branches": ["main", "master"],
"default_protocol": "ssh",
"default_ssh_key_path": "~/.ssh/id_ed25519",
"default_pat_token_env": "GITHUB_PAT_TOKEN"
}
}