Create a bot talking to @BotFather
in Telegram.
Create a bot.token
file with the bot token provided by @BotFather
, for example:
echo "<bot_token>" > bot.token
Create a client.token
with the client ID and client secret from an spotify APP, the format should be:
echo -n "<client_id>:<client_secret>" | base64 -w 0 > client.token
Create a release with:
make release
Start the bot with:
make start
To attach to the bot execute:
make attach
To stop the bot execute:
make stop