Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/int128/amefuriso
Slack bot for notifying rainfall forecast using Yahoo Japan Weather API like 雨雲レーダー
https://github.com/int128/amefuriso
appengine slack weather yahoo-weather-api
Last synced: 11 days ago
JSON representation
Slack bot for notifying rainfall forecast using Yahoo Japan Weather API like 雨雲レーダー
- Host: GitHub
- URL: https://github.com/int128/amefuriso
- Owner: int128
- License: apache-2.0
- Created: 2018-12-12T01:24:53.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-04T12:44:32.000Z (over 4 years ago)
- Last Synced: 2024-10-13T00:54:19.218Z (26 days ago)
- Topics: appengine, slack, weather, yahoo-weather-api
- Language: Go
- Homepage:
- Size: 106 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# amefuriso [![CircleCI](https://circleci.com/gh/int128/amefuriso.svg?style=shield)](https://circleci.com/gh/int128/amefuriso)
This is a Slack bot for notifying rainfall forecast using [Yahoo Japan Weather API](https://developer.yahoo.co.jp/webapi/map/openlocalplatform/v1/weather.html).
## Getting Started
TODO: This app is not yet available for public.
## Contributions
This is an open source software.
Feel free to open issues and pull requests.### Architecture
This application is written in Go and designed for App Engine.
It consists of the following packages:- `main` - Bootstraps the application and wires dependencies.
- `handlers` - Handles requests.
- `usecases` - Provides application use cases.
- `domain` - Provides domain of weather forecast.
- `gateways` - Provides conversion between domain models and external models.
- `infrastructure` - Invokes external APIs.You can regenerate interface mocks as follows:
```sh
go generate -v ./...
```### How to develop and deploy
```sh
# Install SDK
brew cask install google-cloud-sdk
gcloud components install app-engine-go# Run
dev_appserver.py .# Deploy
gcloud app deploy --project=amefuriso
```