mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 17:07:58 +03:00
* add inGameID to WACCA charts * add WACCA import support from MYT * add client support for api/myt-wacca * add bot support for api/myt-wacca * remove artistJP and titleJP from songs-wacca Turns out these aren't actually in the game data or anything, and we won't be able to get their values for omni songs or future songs added in plus. * add some missing omni WACCA songs * add test * fix tabs in test.conf.json5 * revamp grpc call handling a bit and add more error handling * feat: drag the protofiles in rather than alter build --------- Co-authored-by: zkldi <20380519+zkldi@users.noreply.github.com>
77 lines
1.5 KiB
JSON
77 lines
1.5 KiB
JSON
// Config file that the CI deployment uses. This is moved to $pwd/conf.json5 before CI tests are ran.
|
|
|
|
{
|
|
MONGO_DATABASE_NAME: "testingdb",
|
|
CAPTCHA_SECRET_KEY: "unused",
|
|
SESSION_SECRET: "unused",
|
|
FLO_API_URL: "https://flo.example.com",
|
|
EAG_API_URL: "https://eag.example.com",
|
|
MIN_API_URL: "https://min.example.com",
|
|
MYT_API_HOST: "myt.example.com",
|
|
FLO_OAUTH2_INFO: {
|
|
CLIENT_ID: "DUMMY_CLIENT_ID",
|
|
CLIENT_SECRET: "DUMMY_CLIENT_SECRET",
|
|
REDIRECT_URI: "https://example.com",
|
|
},
|
|
EAG_OAUTH2_INFO: {
|
|
CLIENT_ID: "DUMMY_CLIENT_ID",
|
|
CLIENT_SECRET: "DUMMY_CLIENT_SECRET",
|
|
REDIRECT_URI: "https://example.com",
|
|
},
|
|
ARC_AUTH_TOKEN: "unused",
|
|
MYT_AUTH_TOKEN: "unused",
|
|
ENABLE_SERVER_HTTPS: false,
|
|
OUR_URL: "https://example.com",
|
|
INVITE_CODE_CONFIG: {
|
|
BATCH_SIZE: 2,
|
|
INVITE_CAP: 100,
|
|
BETA_USER_BONUS: 5,
|
|
},
|
|
CDN_CONFIG: {
|
|
WEB_LOCATION: "/cdn",
|
|
SAVE_LOCATION: {
|
|
TYPE: "LOCAL_FILESYSTEM",
|
|
LOCATION: "./test-cdn",
|
|
SERVE_OWN_CDN: true,
|
|
},
|
|
},
|
|
TACHI_CONFIG: {
|
|
TYPE: "omni",
|
|
NAME: "Tachi Testing",
|
|
GAMES: [
|
|
"iidx",
|
|
"museca",
|
|
"sdvx",
|
|
"bms",
|
|
"chunithm",
|
|
"usc",
|
|
"wacca",
|
|
"popn",
|
|
"jubeat",
|
|
"pms",
|
|
"maimai",
|
|
"maimaidx",
|
|
"arcaea",
|
|
"ongeki",
|
|
],
|
|
IMPORT_TYPES: [
|
|
"file/eamusement-iidx-csv",
|
|
"file/batch-manual",
|
|
"file/solid-state-squad",
|
|
"file/pli-iidx-csv",
|
|
"ir/direct-manual",
|
|
"ir/barbatos",
|
|
"ir/fervidex",
|
|
"ir/fervidex-static",
|
|
"ir/beatoraja",
|
|
"ir/usc",
|
|
"ir/kshook-sv6c",
|
|
"api/eag-iidx",
|
|
"api/eag-sdvx",
|
|
"api/flo-iidx",
|
|
"api/flo-sdvx",
|
|
"api/min-sdvx",
|
|
],
|
|
},
|
|
}
|