git clone https://github.com/nezutero/animun
- Create .env file and inside you should create env variable with your api key:
TELEGRAM_API_TOKEN=YOUR_TOKEN
- You need to uncomment these lines in bot.go if you are going to run it using go run or go build:
// "github.com/joho/godotenv"
// err := godotenv.Load("../.env")
// if err != nil {
// fmt.Println("[ERROR] error loading .env file")
// log.Panic(err)
// }
- To run it:
go run main.go
- Or build and run:
go build
./animun
- You need to paste your api key in dockerfile:
ENV TELEGRAM_API_TOKEN=YOUR_API_TOKEN
- Run it:
docker build -t your_image_name .
docker run -d -p 8080:80 your_image_name
-
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
-
Please make sure to update tests as appropriate.