Telegram bot that helps you make decisions. https://t.me/decisionparalysisbot
Go to file
2023-01-27 23:33:10 +01:00
.gitignore Initial commit 2023-01-08 22:57:00 +01:00
LICENSE Add LICENSE 2023-01-10 04:47:39 +01:00
Program.cs Fix /spinbottle command 2023-01-27 23:33:10 +01:00
README.md Initial commit 2023-01-08 22:57:00 +01:00
Telegram.Bot.DecisionMaker.csproj Add build revision information to help message 2023-01-08 23:32:46 +01:00
Telegram.Bot.DecisionMaker.sln Initial commit 2023-01-08 22:57:00 +01:00

Telegram.Bot.DecisionMaker

Telegram bot that helps you make decisions. Production instance running on @decisionparalysisbot.

In case the official instance ever goes down, here's how to set this up yourself:

  • Obtain your own bot token from @BotFather
  • Start this bot using TELEGRAM_BOT_TOKEN=yourtoken dotnet run

systemd service example:

# /etc/systemd/system/decisionbot.service
[Unit]
Description=Telegram.Bot.DecisionMaker
Wants=network-online.target nss-lookup.target
After=network-online.target nss-lookup.target

[Service]
Type=simple
User=botuser
WorkingDirectory=/opt/Telegram.Bot.DecisionMaker
Environment=TELEGRAM_BOT_TOKEN='yourtoken'
ExecStart=/usr/bin/dotnet run
Restart=on-failure

[Install]
WantedBy=multi-user.target