-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
25 lines (25 loc) · 1.08 KB
/
config.json.example
File metadata and controls
25 lines (25 loc) · 1.08 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
{
// Base url of the Confluence server
"confluence_url": "https://confluence.example.net/",
// Personal Access Token use to authenticate to the Confluence server
"confluence_token": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
// The Confluence space to write to
"confluence_space": "MY_SPACE",
// The ID of the root Confluence page to populate with README.md content
// and hang all other pages under. All children of this page that do not
// exist in markdown will be pruned.
"parent_page_id": "999999999",
// Template for the body of the Confluence page.
// This file is processed as a jinja2 template.
"page_template": "/page-template.j2",
// Title of the root page in Confluence
// (e.g. the title applied to what is effectively the README.md)
"root_page_title": "My Wiki",
// The local directory of markdown files to be synced
"markdown_dir": "/wiki-markdown",
// The local directory to store the state of past synchronization actions
// (this can safely be the same as "markdown_dir")
"state_dir": "/wiki-state",
// Max parallel Confluence requests
"confluence_threads": 10
}