Pal is a simple tool designed to track events posted to Peoply, and post them to a given discord channel.
Pal is pal.
Echo the webhook to a .env file in the root directory.
echo "DISCORD_WEBHOOK_URL=<webhook_url>" > .envMake sure direnv uses the provided shell.nix.
echo "use nix" > .envrc && direnv allowAlternatively, use pip yuck.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
echo "export VIRTUAL_ENV='.venv'\nlayout python3" > .envrc && direnv allowTo start Pal as a “standalone”, run the provided main.py.
python3 main.pyTo start Pal as a systemd service, do the following.
# Start the service
systemctl --user start pal.service
# Auto startup
systemctl --user enable pal.serviceThis project is licensed under the MIT License.