Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 945 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 945 Bytes

Release Informer Bot

Code Climate Try on Telegram

Simple Telegram bot that will inform you on when the new version of an app released in App Store.

Requirements:

  • Node.js
  • CouchDB

Try: https://telegram.me/ReleaseInformerBot

Install:

npm install pm2 -g
npm install
TOKEN='TOKEN' pm2 start index.js --watch

Views for CouchDB:

{
   "_id": "_design/list",
   "language": "javascript",
   "views": {
       "by_bundle": {
           "map": "function(doc) {\n  emit(doc.bundle_id, doc);\n}"
       },
       "by_chat": {
           "map": "function(doc) {\n  for (var i=0; i<doc.chats.length; i++) {\n    emit(doc.chats[i], doc);\n  }\n}"
       }
   }
}