mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
32 lines
865 B
JSON
32 lines
865 B
JSON
// Config file that the CI deployment uses. This is moved to $pwd/conf.json5 before CI tests are ran.
|
|
|
|
{
|
|
MONGO_DATABASE_NAME: "testingdb",
|
|
LOG_LEVEL: "info",
|
|
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",
|
|
ARC_API_URL: "https://arc.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",
|
|
CDN_FILE_ROOT: "./test-cdn",
|
|
TYPE: "omni",
|
|
ENABLE_SERVER_HTTPS: false,
|
|
RUN_OWN_CDN: true,
|
|
OUR_URL: "https://example.com",
|
|
EMAIL_CONFIG: {
|
|
FROM: "test <zkldi@example.com>",
|
|
},
|
|
}
|