https://github.com/operando/tonkotsu
Google Play Application & App Store Application & Kindle Store Application Update Checker in Go
https://github.com/operando/tonkotsu
android go ios
Last synced: 5 months ago
JSON representation
Google Play Application & App Store Application & Kindle Store Application Update Checker in Go
- Host: GitHub
- URL: https://github.com/operando/tonkotsu
- Owner: operando
- License: other
- Created: 2015-08-28T02:41:26.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-06T05:51:06.000Z (about 9 years ago)
- Last Synced: 2025-08-14T11:59:21.581Z (11 months ago)
- Topics: android, go, ios
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 57
- Watchers: 2
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# TONKOTSU
Google Play / Kindle Store Application & App Store Application Update Checker in Go
## Run
```bash
go run tonkotsu.go config.go -c config.toml
```
## Config File
```toml
log = "debug"
sleeptime = 1
error_post = true
[slack_update_post]
text = "Update!!!!!"
username = "TONKOTSU bot"
icon_emoji = ":pig:"
channel = "#test"
link_names = true
[slack_error_post]
text = "Error!!!!!"
username = "bot"
icon_emoji = ":ghost:"
channel = "#test"
link_names = true
[slack_start_post]
text = "Running tonkotsu..."
username = "bot"
icon_emoji = ":ghost:"
channel = "#test"
link_names = true
[webhook]
url = "webhook_url" # your Incoming WebHooks URL for Slack
[ios]
app_id = "id667861049" # your iOS application app id
country = "jp"
[android]
package = "com.mercariapp.mercari" # your Android application package name
[kindle]
asin = "" # your Amazon Standard Identification Number
```
## License
```
Copyright 2016 Shinobu Okano
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```