-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.sample.json
40 lines (40 loc) · 1.21 KB
/
config.sample.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
{
"data": {
"JP": {
"gamedata": "../fgo-game-data-jp",
"postgresdsn": "postgresql://user:password@127.0.0.1:5433/fgoapijp"
},
"NA": {
"gamedata": "../fgo-game-data-na",
"postgresdsn": "postgresql://user:password@127.0.0.1:5434/fgoapina"
},
"CN": {
"gamedata": "../fgo-game-data-cn",
"postgresdsn": "postgresql://user:password@127.0.0.1:5435/fgoapicn"
},
"KR": {
"gamedata": "../fgo-game-data-kr",
"postgresdsn": "postgresql://user:password@127.0.0.1:5436/fgoapikr"
},
"TW": {
"gamedata": "../fgo-game-data-tw",
"postgresdsn": "postgresql://user:password@127.0.0.1:5437/fgoapitw"
}
},
"redisdsn": "redis://localhost:6379/0",
"redis_prefix": "fgoapi",
"clear_redis_cache": true,
"rayshift_api_key": "",
"rayshift_api_url": "https://rayshift.io/api/v1",
"quest_cache_length": 3600,
"db_pool_size": 3,
"db_max_overflow": 10,
"write_postgres_data": true,
"write_redis_data": true,
"asset_url": "https://assets.atlasacademy.io/GameData",
"openapi_url": "https://api.atlasacademy.io",
"export_all_nice": false,
"documentation_all_nice": true,
"github_webhook_secret": "",
"github_webhook_git_pull": false
}