https://github.com/thisisparker/automatt
https://github.com/thisisparker/automatt
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thisisparker/automatt
- Owner: thisisparker
- Created: 2021-02-16T22:57:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-18T21:09:50.000Z (over 1 year ago)
- Last Synced: 2025-01-24T21:41:14.520Z (over 1 year ago)
- Language: Python
- Size: 48.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automatt
This repo tracks tools developed to assist in the authorship of Matthew Gritzmacher's [Daily Crossword Links](https://crosswordlinks.substack.com) newsletter.
### Discord bot
The Automatt Discord bot is deployed as a systemd service, where it listens for requests to rerun the daily script. That requires creating the following file in `/etc/systemd/system/automatt-bot.service`
```
[Unit]
Description=Automatt Discord bot
After=network.target
[Service]
Type=simple
WorkingDirectory=/path/to/this/project/discord-bot
ExecStart=/path/to/python bot.py
Environment=CONFIG_PATH=/path/to/this/project/email.yaml
Restart=unless-stopped
User=
[Install]
WantedBy=multi-user.target
```