fixed linting

This commit is contained in:
niels
2022-10-30 11:21:46 +01:00
parent d212cc13b2
commit 424f0b04e4
2 changed files with 77 additions and 85 deletions

View File

@@ -1,15 +1,10 @@
{ {
"arch": [ "arch": ["aarch64", "amd64"],
"aarch64",
"amd64"
],
"codenotary": "alexandrep.github@gmail.com", "codenotary": "alexandrep.github@gmail.com",
"description": "Automatically login and redeem promotional free games from the Epic Games Store", "description": "Automatically login and redeem promotional free games from the Epic Games Store",
"image": "ghcr.io/alexbelgium/epicgamesfree-{arch}", "image": "ghcr.io/alexbelgium/epicgamesfree-{arch}",
"init": false, "init": false,
"map": [ "map": ["config:rw"],
"config:rw"
],
"name": "Epic Games Free", "name": "Epic Games Free",
"ports": { "ports": {
"3000/tcp": 3000 "3000/tcp": 3000

View File

@@ -3,18 +3,16 @@
"cronSchedule": "5 16 * * *", "cronSchedule": "5 16 * * *",
"logLevel": "info", "logLevel": "info",
"webPortalConfig": { "webPortalConfig": {
"baseUrl": "https://epic.exmaple.com", "baseUrl": "https://localhost:3000"
}, },
"accounts": [ "accounts": [
{ {
"email": "example@gmail.com", "email": "example@gmail.com",
"password": "abc1234", "password": "abc1234",
"totp": "EMNCF83ULU3K3PXPJBSWY3DPEHPK3PXPJWY3DPEHPK3YI69R39NE" "totp": "EMNCF83ULU3K3PXPJBSWY3DPEHPK3PXPJWY3DPEHPK3YI69R39NE"
}, }
], ],
"notifiers": [ "notifiers": [
// You may configure as many of any notifier as needed
// Here are some examples of each type
{ {
"type": "email", "type": "email",
"smtpHost": "smtp.gmail.com", "smtpHost": "smtp.gmail.com",
@@ -25,41 +23,40 @@
"secure": false, "secure": false,
"auth": { "auth": {
"user": "hello@gmail.com", "user": "hello@gmail.com",
"pass": "abc123", "pass": "abc123"
}, }
}, },
{ {
"type": "discord", "type": "discord",
"webhookUrl": "https://discord.com/api/webhooks/123456789123456789/A-abcdefghijklmn-abcdefghijklmnopqrst12345678-abcdefghijklmnop123456", "webhookUrl": "https://discord.com/api/webhooks/123456789123456789/A-abcdefghijklmn-abcdefghijklmnopqrst12345678-abcdefghijklmnop123456",
// Optional list of users or roles to mention
"mentionedUsers": ["914360712086843432"], "mentionedUsers": ["914360712086843432"],
"mentionedRoles": ["734548250895319070"], "mentionedRoles": ["734548250895319070"]
}, },
{ {
"type": "telegram", "type": "telegram",
"token": "644739147:AAGMPo-Jz3mKRnHRTnrPEDi7jUF1vqNOD5k", "token": "644739147:AAGMPo-Jz3mKRnHRTnrPEDi7jUF1vqNOD5k",
"chatId": "-987654321", "chatId": "-987654321"
}, },
{ {
"type": "apprise", "type": "apprise",
"apiUrl": "http://192.168.1.2:8000", "apiUrl": "http://192.168.1.2:8000",
"urls": "mailto://user:pass@gmail.com", "urls": "mailto://user:pass@gmail.com"
}, },
{ {
"type": "pushover", "type": "pushover",
"token": "a172fyyl9gw99p2xi16tq8hnib48p2", "token": "a172fyyl9gw99p2xi16tq8hnib48p2",
"userKey": "uvgidym7l5ggpwu2r8i1oy6diaapll", "userKey": "uvgidym7l5ggpwu2r8i1oy6diaapll"
}, },
{ {
"type": "gotify", "type": "gotify",
"apiUrl": "https://gotify.net", "apiUrl": "https://gotify.net",
"token": "SnL-wAvmfo_QT", "token": "SnL-wAvmfo_QT"
}, },
{ {
"type": "homeassistant", "type": "homeassistant",
"instance": "https://homeassistant.example.com", "instance": "https://homeassistant.example.com",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c", "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"notifyservice": "mobile_app_smartphone_name", "notifyservice": "mobile_app_smartphone_name"
}, }
], ]
} }