Migrate to python (#265)

* Add initial python migration

* Add pylint

* Add pre-commit

* Add Dockerfile

* Add expression matching

* Use shelve to store previous matches

* Add notifications

* Calculate post age

* Update README.md
This commit is contained in:
Dave Gallant
2023-02-20 23:23:29 -05:00
committed by GitHub
parent 4dbb9f97e8
commit 9ba64a3de5
33 changed files with 1938 additions and 2121 deletions

View File

@@ -1,3 +1,3 @@
FROM ghcr.io/davegallant/rfd-notify:latest
FROM ghcr.io/davegallant/rfd-notify:1
ENTRYPOINT ["/rfd-notify", "-c", "config.yaml"]
ENTRYPOINT ["python", "cli.py", "-c", "config.yaml"]