A bot that collects Iranian hosted applications, or websites domain names from user submissions.
It's accessible on Telegram with username: @iran_domains_bot
.
-
Download the latest executable and run it!
curl -SfLO https://github.com/z4x7k/iran-domains-tg-bot/releases/latest/download/bot && chmod +x ./bot
Verify it's working using
./bot --help
command. -
Download
.env
template file:curl -SfLo .ir-domains-bot.env https://raw.githubusercontent.com/z4x7k/iran-domains-tg-bot/main/.env.template
-
Set proper values in
.env
-
Run it!
./bot run --db ir-domains.db --env .env
Write the content below in a service unit file, e.g., ~/.config/systemd/user/ir-domains-bot.service
[Unit]
Description=Iran Domains Telegram Bot
After=network.target
Wants=network-online.target
[Service]
Restart=on-failure
Type=simple
ExecStart=path_to_bot_executable run --db path_to_db_file.db --env path_to_dotenv
RestartSec=10s
TimeoutStopSec=20s
KillSignal=SIGINT
FinalKillSignal=SIGKILL
[Install]
WantedBy=multi-user.target
Then execute the following commands to activate, start, and enable start-on-boot the service:
systemctl --user daemon-reload
systemctl --user start ir-domains-bot.service
systemctl --user enable ir-domains-bot.service
Note: in order for start-on-boot to work for user service unit to work, run the following command if you haven't already:
sudo loginctl enable-linger $USER