Merge pull request #532 from bruvv/patch-1

Aligned config with upstream
This commit is contained in:
Alexandre
2022-10-31 07:09:22 +00:00
committed by GitHub
3 changed files with 69 additions and 66 deletions

View File

@@ -1,11 +1,17 @@
## 30-10-2022
- New config.js update
## ee3dff4b29757e28282cada9bcb3e8f84f1c3041-2022-10-23 (2022-10-23) ## ee3dff4b29757e28282cada9bcb3e8f84f1c3041-2022-10-23 (2022-10-23)
- Update to latest version from charlocharlie/epicgames-freegames - Update to latest version from charlocharlie/epicgames-freegames
## 80fdb2447c8846bee011c0d6d5c44c56210cb24a-2022-09-23 (2022-09-23) ## 80fdb2447c8846bee011c0d6d5c44c56210cb24a-2022-09-23 (2022-09-23)
- Update to latest version from charlocharlie/epicgames-freegames - Update to latest version from charlocharlie/epicgames-freegames
## 9531608362dc8c1232c1e12005541796610d2af7-2021-12-17 (2021-12-17) ## 9531608362dc8c1232c1e12005541796610d2af7-2021-12-17 (2021-12-17)
- Update to latest version from charlocharlie/epicgames-freegames - Update to latest version from charlocharlie/epicgames-freegames
## 4.1.0 (21-07-2022) ## 4.1.0 (21-07-2022)

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 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

@@ -1,60 +1,62 @@
{ {
"runOnStartup":true, "runOnStartup": true,
"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":"EMNCAZE234AZEEMNCAZE234AZEEMNCAZE234AZEEMNCAZE234AZEEMNCAZE234AZEEMNCAZE234AZEEMNCAZE234AZEEMNCAZE234AZE" "totp": "EMNCF83ULU3K3PXPJBSWY3DPEHPK3PXPJWY3DPEHPK3YI69R39NE"
} }
], ],
"notifiers":[ "notifiers": [
{ {
"type":"email", "type": "email",
"smtpHost":"smtp.gmail.com", "smtpHost": "smtp.gmail.com",
"smtpPort":587, "smtpPort": 587,
"emailSenderAddress":"hello@gmail.com", "emailSenderAddress": "hello@gmail.com",
"emailSenderName":"Epic Games Captchas", "emailSenderName": "Epic Games Captchas",
"emailRecipientAddress":"hello@gmail.com", "emailRecipientAddress": "hello@gmail.com",
"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",
"mentionedUsers":[ "mentionedUsers": ["914360712086843432"],
"914360712086843432" "mentionedRoles": ["734548250895319070"]
], },
"mentionedRoles":[ {
"734548250895319070" "type": "telegram",
] "token": "644739147:AAGMPo-Jz3mKRnHRTnrPEDi7jUF1vqNOD5k",
}, "chatId": "-987654321"
{ },
"type":"telegram", {
"token":"to_fill", "type": "apprise",
"chatId":"-987654321" "apiUrl": "http://192.168.1.2:8000",
}, "urls": "mailto://user:pass@gmail.com"
{ },
"type":"apprise", {
"apiUrl":"http://192.168.1.2:8000", "type": "pushover",
"urls":"mailto://user:pass@gmail.com" "token": "a172fyyl9gw99p2xi16tq8hnib48p2",
}, "userKey": "uvgidym7l5ggpwu2r8i1oy6diaapll"
{ },
"type":"pushover", {
"token":"to_fill", "type": "gotify",
"userKey":"to_fill" "apiUrl": "https://gotify.net",
}, "token": "SnL-wAvmfo_QT"
{ },
"type":"gotify", {
"apiUrl":"https://gotify.net", "type": "homeassistant",
"token":"SnL-wAvmfo_QT" "instance": "https://homeassistant.example.com",
} "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
] "notifyservice": "mobile_app_smartphone_name"
}
]
} }