A cute music bot to find and get music for telegram
Before you begin, make sure that the .NET 9 SDK
is installed on your system. You can download it from the official .NET website.
Once the SDK is installed, open your terminal and navigate to the root directory of your project. Run the following command to compile the Bot application:
dotnet publish -c Release -r linux-x64 -o bin Sources/Fembina.Busquita.Bot/Fembina.Busquita.Bot.csproj
This will create the release build for Linux and output the compiled files to the bin
folder.
After the publishing process is complete, navigate to the bin
folder:
cd bin
Before starting the Bot, you need to specify your Telegram token. Open the config.json
file and add your token in the following format:
{
"Talkie": {
"Telegram": {
"Token": "your_telegram_token_here"
}
}
}
Replace your_telegram_token_here
with your actual Telegram Bot token.
Now, you can run the Bot application. In the bin directory, execute the following command:
./Busquita
The Bot should now be up and running, connected to Telegram.
This project is licensed under the GNU General Public License v3.0.