-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.example
70 lines (70 loc) · 1.33 KB
/
config.json.example
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"db_clients": [
{
"name": "default",
"rdbms": "postgresql",
"host": "127.0.0.1",
"port": 5432,
"dbname": "postgres",
"user": "postgres",
"passwd": "postgres",
"is_fast": true,
"connection_number": 1,
"filename": ""
}
],
"redis_clients": [
{
"name": "default",
"host": "127.0.0.1",
"port": 6379,
"username": "",
"passwd": "",
"db": 0,
"is_fast": true,
"number_of_connections": 1,
"timeout": -1.0
}
],
"app": {
"log": {
"use_spdlog": true,
"log_path": "./logs",
"log_size_limit": 100000000,
"max_files": 10,
"log_level": "DEBUG",
"display_local_time": false
}
},
"custom_config": {
"app_url": "",
"frontend_url": "",
"auth": {
"callback_url": "",
"settings_callback_url": "",
"error_callback_url": "",
"token_secret": ""
},
"github_app": {
"name": "",
"client_id": "",
"client_secret": ""
},
"github_app_old": {
"name": "",
"client_id": ""
},
"modrinth_app": {
"client_id": "",
"client_secret": ""
},
"cloudflare": {
"token": "",
"account_tag": "",
"site_tag": ""
},
"curseforge_key": "",
"storage_path": "",
"api_key": ""
}
}