all repos — escarbot @ ce092d95ef121e00ce953180f9aeb7cc56a0134a

Earthbound Café's custom Telegram bot, with lots of cool utilities built-in.

README.md (view raw)

 1# EscarBot
 2Telegram bot for EarthBound Café!
 3
 4## Instructions
 5
 6First of all, you should set up some environment variables:
 7```
 8cp .env.example .env
 9nano .env
10```
11
12The following variables are required:
13* `BOT_TOKEN`
14* `CHANNEL_ID`
15* `GROUP_ID`
16* `ADMIN_ID`
17
18### Run with Docker
19Just run:
20```
21docker-compose -f docker-compose.yaml up -d
22```
23
24## Test and debug locally
25```
26go test -v ./...
27go run .
28```