This is a project for the TopGun course. It is a typescript program, that allows you to automatically write into journal even if you forget to.
This project is not intended to be used for cheating. DO NOT USE IT This project is only for educational purposes. This project also violates Terms of Service of the Discord. Use it at your own risk
- Write into journal
- Check if you have written into journal
- Automatically write into journal using
node-schedule
- Clone the repository
- Install dependencies using
npm install
- Rename
.env.placeholder
to.env
and fill it with your data - Run the program using
npm start
- Enjoy :)
- Execute the steps 1-3 above
- Edit the
WorkingDirectory
line in thejournalist.service
file to the folder you cloned into - Copy the
journalist.service
file to/etc/systemd/system
(cp journalist.service /etc/systemd/system/journalist.service
) - Reload the services with
sudo systemctl daemon-reload
- Enable the service with
sudo systemctl enable journalist.service
- Start the service with
sudo systemctl start journalist.service
- You can check the logs with
sudo systemctl status journalist.service