- download the zip file/git clone the project
- extract it
- open a terminal (or command prompt on windows) in the project directory
- on linux:
python3 setup.py install
. on windows:py setup.py install
. - run it. on linux :
python3 -m dailyreleases
. on windows:py -m dailyreleases
- edit the config file on linux:
nano ~/.dailyreleases/config.ini
. on windows:notepad.exe %USERPROFILE%\.dailyreleases\config.ini
. - run it 24/7: on linux: create a systemd service. on windows: use task scheduler or use an infinite looping batch script.
sudo nano /etc/systemd/system/dailyreleases.service
[Unit]
Description=Daily Releases Service
Wants=network-online.target
After=network-online.target
[Service]
# Change user as necessary
User=root
ExecStart=/usr/bin/python3 -m dailyreleases
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.target
sudo systemctl start dailyreleases
sudo systemctl enable dailyreleases
open notepad, type the following
@echo off
:a
py -m dailyreleases
goto a
pause
press CTRL + s and save as a .bat file
Originally developed by Casper V. Kristensen. To view the changes I made as the license requires, view the commit history.