-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.json
53 lines (53 loc) · 1.72 KB
/
config.example.json
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
50
51
52
53
{
"reload_from_database": true,
"redact_emails": true,
"neo4j_uri": "bolt://localhost:7687",
"neo4j_user": "neo4j",
"neo4j_password": "YOURPASSWORD",
"databases": [
{
"name": "discourse_1",
"ensure_consent": "false",
"protected_topic_policy": "redact",
"pseudonymize_users": "false",
"database_root": "",
"omit_codes_prefix": [],
"host": "your.discourse.server",
"port": "5432",
"dbname": "discourse_production_database_1",
"user": "sqluser",
"password": "sqlpassword",
"omitted_projects": [
"z--orphaned-annotations",
"ethno-tag"
]
},
{
"name": "discourse_2",
"ensure_consent": "false",
"protected_topic_policy": "omit",
"pseudonymize_users": "false",
"omit_codes_prefix": ["(A)", "(a)", "(C)", "(c)"],
"database_root": "",
"host": "your.discourse.server",
"port": "5432",
"dbname": "discourse_production_database_1",
"user": "sqluser",
"password": "sqlpassword",
"omitted_projects": []
},
{
"name": "discourse_3",
"ensure_consent": "true",
"protected_topic_policy": "redact",
"pseudonymize_users": "true",
"database_root": "",
"omit_codes_prefix": [],
"host": "your.discourse.server",
"port": "5432",
"dbname": "discourse_database_1",
"user": "sqluser",
"password": "sqlpassword",
"omitted_projects": []
}]
}