mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-09 16:52:13 +01:00
80 lines
2.6 KiB
JSON
80 lines
2.6 KiB
JSON
{
|
|
"port": 8080,
|
|
"mockPort": 8081,
|
|
"globalSalt": "testSalt",
|
|
"adminUserID": "4bdfdc9cddf2c7d07a8a87b57bf6d25389fb75d1399674ee0e0938a6a60f4c3b",
|
|
"newLeafURLs": ["placeholder"],
|
|
"discordReportChannelWebhookURL": "http://127.0.0.1:8081/webhook/ReportChannel",
|
|
"discordFirstTimeSubmissionsWebhookURL": "http://127.0.0.1:8081/webhook/FirstTimeSubmissions",
|
|
"discordCompletelyIncorrectReportWebhookURL": "http://127.0.0.1:8081/webhook/CompletelyIncorrectReport",
|
|
"discordNeuralBlockRejectWebhookURL": "http://127.0.0.1:8081/webhook/NeuralBlockReject",
|
|
"neuralBlockURL": "http://127.0.0.1:8081/NeuralBlock",
|
|
"userCounterURL": "http://127.0.0.1:8081/UserCounter",
|
|
"behindProxy": true,
|
|
"postgres": {
|
|
"user": "ci_db_user",
|
|
"password": "ci_db_pass",
|
|
"host": "localhost",
|
|
"port": 5432
|
|
},
|
|
"redis": {
|
|
"enabled": true,
|
|
"socket": {
|
|
"host": "localhost",
|
|
"port": 6379
|
|
},
|
|
"expiryTime": 86400
|
|
},
|
|
"createDatabaseIfNotExist": true,
|
|
"schemaFolder": "./databases",
|
|
"dbSchema": "./databases/_sponsorTimes.db.sql",
|
|
"privateDBSchema": "./databases/_private.db.sql",
|
|
"categoryList": ["sponsor", "selfpromo", "exclusive_access", "interaction", "intro", "outro", "preview", "music_offtopic", "filler", "poi_highlight", "chapter"],
|
|
"mode": "test",
|
|
"readOnly": false,
|
|
"webhooks": [
|
|
{
|
|
"url": "http://127.0.0.1:8081/CustomWebhook",
|
|
"key": "superSecretKey",
|
|
"scopes": [
|
|
"vote.up",
|
|
"vote.down"
|
|
]
|
|
}, {
|
|
"url": "http://127.0.0.1:8081/FailedWebhook",
|
|
"key": "superSecretKey",
|
|
"scopes": [
|
|
"vote.up",
|
|
"vote.down"
|
|
]
|
|
}, {
|
|
"url": "http://127.0.0.1:8099/WrongPort",
|
|
"key": "superSecretKey",
|
|
"scopes": [
|
|
"vote.up",
|
|
"vote.down"
|
|
]
|
|
}
|
|
],
|
|
"hoursAfterWarningExpires": 24,
|
|
"rateLimit": {
|
|
"vote": {
|
|
"windowMs": 900000,
|
|
"max": 20,
|
|
"message": "Too many votes, please try again later",
|
|
"statusCode": 429
|
|
},
|
|
"view": {
|
|
"windowMs": 900000,
|
|
"max": 20,
|
|
"statusCode": 200
|
|
}
|
|
},
|
|
"patreon": {
|
|
"clientId": "testClientID",
|
|
"clientSecret": "testClientSecret",
|
|
"redirectUri": "http://127.0.0.1/fake/callback"
|
|
},
|
|
"minReputationToSubmitFiller": -1,
|
|
"minUserIDLength": 0
|
|
}
|