Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 462 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 462 Bytes

Cross-compiling from windows powershell

$Env:GOOS = "linux"; $Env:GOARCH = "amd64"
$Env:TELEGRAM_BOT_TOKEN = "0000000000:ABCDEFGHIJKLMNOPQRSTUVWXYZABEXAMPLE"
$Env:CONFIG_FILE_PATH = "/path/to/config.json"
go build main.go

Running the bot on debian and probably many other linux distributions

env TELEGRAM_BOT_TOKEN=0000000000:ABCDEFGHIJKLMNOPQRSTUVWXYZABEXAMPLE CONFIG_FILE_PATH=/path/to/config.json /path/to/your/executable