maple3142 / saucenao-search-tgbot

A telegram bot enable you to search SauceNAO in telegram.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SauceNAO search bot for telegram

Add friend: @SauceNAO_Search_bot

preview

Deploy

Heroku

Make sure you have Heroku CLI installed beforehand.

  1. Create a app on Heroku
  2. Add Heroku Postgres to your app
  3. Clone this repo
  4. Create a .env file with following details
SAUCENAO_APIKEY=
TG_TOKEN=
WEBHOOK_URL=
DEBUG=saucenao-tg:*
DATABASE_URL=
MINIUM_SIMILARITY=50
MAX_RESULT_COUNT=3
  1. Remove .env from .gitignore and commit
  2. heroku git -a YOUR_APP_NAME
  3. git push heroku master

WEBHOOK_URL

It should be https://your-app-name.herokuapp.com.

DATABASE_URL

In the dashboard of your Heroku app, click the Heroku Postgres addon and go to the setting page and find the value of URI. Simply fill it to DATABASE_URL.

Local

  1. Clone this repo
  2. Create a .env file with following details
SAUCENAO_APIKEY=
TG_TOKEN=
WEBHOOK_URL=
DEBUG=saucenao-tg:*
DATABASE_URL=
MINIUM_SIMILARITY=50
MAX_RESULT_COUNT=3
  1. yarn start or npm start

WEBHOOK_URL

It is some URL that is publicly accessible through the Internet. For example, http://your.domain.com or http://123.45.67.89 (Your ip)

DATABASE_URL

You can install a PostgreSQL on your local computer or find some PostgreSQL as a service to use.

The format of DATABASE_URL should be: postgresql://DB_USER:DB_USER_PASS@DB_URL:DB_PORT/DB_NAME

Local deploy without a publicly accessible ip

Replace this line with polling: true, and remove these lines too.

About

A telegram bot enable you to search SauceNAO in telegram.


Languages

Language:TypeScript 98.0%Language:Dockerfile 2.0%