https://github.com/jojoarianto/oli-bot
Olimpiade.id Line Bot
https://github.com/jojoarianto/oli-bot
bot line
Last synced: 12 months ago
JSON representation
Olimpiade.id Line Bot
- Host: GitHub
- URL: https://github.com/jojoarianto/oli-bot
- Owner: jojoarianto
- Created: 2019-03-15T17:42:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-12T23:47:01.000Z (about 7 years ago)
- Last Synced: 2025-02-28T22:10:28.222Z (over 1 year ago)
- Topics: bot, line
- Language: Go
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# oli-bot
Olimpiade.id bot, Line App
## Purpose
As an organizer who held olimpiade event, we need some information faster for some cases, especially about receiving payment proof from participants. so we create this tools (line app) to send notifcation via line when new payment comes. further we'll also develope some another necessary features.
## How to use it
-
## Official line
Barcode
### Version 0.1
- Feature Line notification when new payment proof from participant comes
## Deploy
Deploy function on google cloud function
first setup project id
```bash
# fill with project id
PROJECT_ID=
# set config to spesific projectid
gcloud config set project $PROJECT_ID
```
go to directory you want to deploy
```bash
# move directory
cd webhook
# deploy webhook
gcloud functions deploy webhook --runtime go111 --env-vars-file ../env.yaml --entry-point Webhook --region asia-northeast1 --trigger-http
```
delete function
```bash
# hello is function name
gcloud functions delete functionname
```