-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.json
More file actions
55 lines (55 loc) · 1.24 KB
/
config.example.json
File metadata and controls
55 lines (55 loc) · 1.24 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
50
51
52
53
54
55
{
"db": {
"dataSource": "postgres://<username>:<password>@<host>:<port>/<db>?sslmode=disable"
},
"aliyun": {
"access_key_id": "<REDACTED>",
"access_key_secret": "<REDACTED>"
},
"wechat": {
"appid": "<REDACTED>",
"secret": "<REDACTED>"
},
"mail": {
"host": "smtp.larksuite.com",
"port": 465,
"username": "<REDACTED>",
"password": "<REDACTED>",
"receiver_address": "<REDACTED>"
},
"logto": {
"appid": "<REDACTED>",
"app_secret": "<REDACTED>",
"endpoint": "https://auth.app.nbtca.space",
"test_user_id": "<REDACTED>"
},
"github": {
"owner": "nbtca",
"repo": "github-api-playground",
"token": "<REDACTED>",
"webhook_secret": "<REDACTED>"
},
"dify": {
"api_endpoint": "http://dify-cloud.nbtca.space/v1",
"api_key": "<REDACTED>"
},
"nsq": {
"host": "nsqd.app.nbtca.space:4150",
"secret": "<REDACTED>",
"event_topic": "event_topic_dev",
"log_topic": "log_topic_dev"
},
"server": {
"port": 4000
},
"web": {
"hostname": "nbtca.space"
},
"notification": {
"batch_size": 50,
"batch_delay_ms": 100,
"default_new_event_created": false,
"default_event_assigned_to_me": true,
"default_event_status_changed": true
}
}