Blind LINE message service using QR Code. Check https://blind-msg.jinstory.net/
- nginx with https
- mysql
- LINE login channel
- LINE message channel
- slack bot
git clone https://github.com/jinil-ha/blind-msg
cd blind-msg
dep ensure
# config web server (ex. nginx)
## location for resource
location ~ ^/(img|css|js)/ {
root <repo-directory>/resource/;
}
## location for qr code
location /qr {
root /home/user/download/qr;
}
## location blind-msg
location / {
proxy_pass http://127.0.0.1:10080/;
proxy_set_header X-REAL-IP $remote_addr;
}
# edit server.yaml
cp server.yaml-sample server.yaml
vi server.yaml
# build
make
# run
make run
# or start daemon
make start