-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #277 from Der-Henning/dev
bump version 1.15.0
- Loading branch information
Showing
9 changed files
with
140 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,8 @@ Readme, source and documentation on [https://github.com/Der-Henning/tgtg](https: | |
|
||
- [`edge`](https://github.com/Der-Henning/tgtg/blob/main/Dockerfile) | ||
- [`edge-alpine`](https://github.com/Der-Henning/tgtg/blob/main/Dockerfile.alpine) | ||
- [`v1`, `v1.14`, `v1.14.10`, `latest`](https://github.com/Der-Henning/tgtg/blob/v1.14.10/Dockerfile) | ||
- [`v1-alpine`, `v1.14-alpine`, `v1.14.10-alpine`, `latest-alpine`](https://github.com/Der-Henning/tgtg/blob/v1.14.10/Dockerfile.alpine) | ||
- [`v1`, `v1.15`, `v1.15.0`, `latest`](https://github.com/Der-Henning/tgtg/blob/v1.15.0/Dockerfile) | ||
- [`v1-alpine`, `v1.15-alpine`, `v1.15.0-alpine`, `latest-alpine`](https://github.com/Der-Henning/tgtg/blob/v1.15.0/Dockerfile.alpine) | ||
|
||
# Quick Start | ||
|
||
|
@@ -28,13 +28,15 @@ services: | |
- DEBUG=false | ||
- TGTG_USERNAME= | ||
- SLEEP_TIME=60 | ||
- SCHEDULE_CRON= | ||
- ITEM_IDS= | ||
#- SCHEDULE_CRON= | ||
#- ITEM_IDS= | ||
- METRICS=false | ||
- METRICS_PORT=8000 | ||
- DISABLE_TESTS=false | ||
- QUIET=false | ||
- LOCALE=en_US | ||
|
||
- SMTP=true | ||
- SMTP=false | ||
- SMTP_HOST=smtp.gmail.com | ||
- SMTP_PORT=465 | ||
- [email protected] | ||
|
@@ -52,7 +54,7 @@ services: | |
- TELEGRAM=false | ||
- TELEGRAM_TOKEN= | ||
- TELEGRAM_CHAT_IDS= | ||
- TELEGRAM_TIMEOUT=60 | ||
#- TELEGRAM_TIMEOUT=60 | ||
#- TELEGRAM_BODY= | ||
|
||
- IFTTT=false | ||
|
@@ -63,8 +65,10 @@ services: | |
- WEBHOOK_URL= | ||
- WEBHOOK_METHOD=POST | ||
- WEBHOOK_BODY= | ||
- WEBHOOK_TYPE= | ||
- WEBHOOK_TIMEOUT=60 | ||
- WEBHOOK_TYPE=plain/text | ||
#- WEBHOOK_HEADERS= | ||
#- WEBHOOK_TIMEOUT=60 | ||
#- WEBHOOK_CRON= | ||
volumes: | ||
- tokens:/tokens | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ services: | |
- METRICS=false ## Enable to export metrics for Prometheus | ||
- METRICS_PORT=8000 ## Port for metrics http server | ||
- DISABLE_TESTS=false ## true to disable test notifications on startup | ||
- quiet=false ## true to disable all console messages. Only errors and console notifier messages | ||
- QUIET=false ## true to disable all console messages. Only errors and console notifier messages | ||
- LOCALE=en_US ## set locale to localize ${{pickupdate}} | ||
|
||
- CONSOLE=false ## true = enable simple console notifications | ||
#- CONSOLE_BODY= ## console message with variables as described below | ||
|
@@ -33,18 +34,21 @@ services: | |
- SMTP_SSL=false ## enable SSL | ||
- [email protected] ## sender adress - same as Login for google and most smtp servers | ||
- [email protected] ## recipient for notifications - can be the same as sender | ||
#-SMTP_SUBJECT= ## Subject and Body options are optional. | ||
#-SMTP_BODY= ## Subject and Body options can use variables as described below | ||
#- SMTP_CRON= | ||
#- SMTP_SUBJECT= ## Subject and Body options are optional. | ||
#- SMTP_BODY= ## Subject and Body options can use variables as described below | ||
## The Body option is interpreted as HTML | ||
|
||
- PUSH_SAFER=false ## true = enable notifications via pushsafer.com | ||
- PUSH_SAFER_KEY= | ||
- PUSH_SAFER_DEVICE_ID= | ||
#- PUSH_SAFER_CRON= | ||
|
||
- TELEGRAM=false ## true = enable notifications via Telegram | ||
- TELEGRAM_TOKEN= ## Telegram Bot token - see @botfather | ||
- TELEGRAM_CHAT_IDS= ## Telegram Chat id, multiple ids separated by comma | ||
- TELEGRAM_TIMEOUT=60 ## Timeout for Telegram API requests | ||
#- TELEGRAM_CRON= | ||
#- TELEGRAM_BODY= ## Optional message body as markdown, variables as described below | ||
## Example: | ||
## 'TELEGRAM_BODY=*$${{display_name}}*\n*Available*: $${{items_available}}\n*Rating*: $${{rating}}\n*Price*: $${{price}} $${{currency}}\n*Pickup*: $${{pickupdate}}' | ||
|
@@ -54,6 +58,7 @@ services: | |
- IFTTT=false ## true = enable notifications via IFTTT Webhooks | ||
- IFTTT_EVENT=tgtg_notification ## IFTTT Webhooks Event | ||
- IFTTT_KEY= ## IFTTT Webhooks Key | ||
#- IFTTT_CRON= | ||
- IFTTT_BODY= ## IFTTT json data body | ||
## Default: {"value1": "$${{display_name}}", "value2": $${{items_available}}, "value3": "https://share.toogoodtogo.com/item/$${{item_id}}"} | ||
|
||
|
@@ -69,6 +74,7 @@ services: | |
- WEBHOOK_TYPE=application/json ## Content-Type for header, default: text/plain | ||
- WEBHOOK_HEADERS={} ## Additional headers | ||
- WEBHOOK_TIMEOUT=60 ## Request Timeout | ||
#- WEBHOOK_CRON= | ||
volumes: | ||
- tokens:/tokens ## volume to save TGTG credentials to reuse on next start up and avoid login mail | ||
volumes: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
__title__ = "TGTG Scanner" | ||
__description__ = "Provides notifications for TGTG magic bags" | ||
__version__ = "1.14.10" | ||
__version__ = "1.15.0" | ||
__author__ = "Henning Merklinger" | ||
__author_email__ = "[email protected]" | ||
__license__ = "GPL" | ||
|
Oops, something went wrong.