Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tasshi-me/mail-notice-linebot
メールが来たのを教えるLINEBOT
https://github.com/tasshi-me/mail-notice-linebot
docker golang heroku linebot mailing
Last synced: about 2 months ago
JSON representation
メールが来たのを教えるLINEBOT
- Host: GitHub
- URL: https://github.com/tasshi-me/mail-notice-linebot
- Owner: tasshi-me
- Created: 2019-02-27T15:13:10.000Z (almost 6 years ago)
- Default Branch: develop
- Last Pushed: 2024-02-22T09:46:39.000Z (12 months ago)
- Last Synced: 2024-06-21T21:06:46.918Z (8 months ago)
- Topics: docker, golang, heroku, linebot, mailing
- Language: Go
- Size: 346 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mail-notice-linebot
メールが来たのを教えるLINEBOT
## SETUP(Heroku)
```bash
#Heroku cli install
$ brew tap heroku/brew && brew install heroku
$ heroku login
$ heroku container:login# Create heroku app
$ heroku apps:create
$ heroku stack:set container# Set local varibales
$ vim .env # .envを編集する
$ heroku plugins:install heroku-config
$ heroku config:push# This makes app be able to know deployed on heroku itself
$ heroku labs:enable runtime-dyno-metadata# heroku install mongodb addon
# help: before this command, verify your account with a credit card
$ heroku config:unset MONGODB_URI
$ heroku addons:create mongolab:sandbox# Push & Release Container
$ heroku container:push
$ heroku container:release# Open your heroku app
$ heroku open```