Your untrustworthy mate for everyday insights.
Go to file
2024-08-25 21:15:26 +02:00
edmond duckland: add emojis 2024-05-21 22:35:43 +02:00
resources plugin: handle resource files in configs 2020-10-09 16:03:09 +02:00
.gitignore youtube_parser: fix reading titles while sleeping 2022-05-16 11:09:55 +02:00
config.json.example duckland: mostly copy doupsland plugin 2024-05-21 22:23:13 +02:00
Dockerfile move plugins' requirements file 2022-08-15 13:24:52 +02:00
pyproject.toml pipfile: integrate plugin deps 2022-11-25 18:33:00 +01:00
README.md update readme 2024-08-25 21:15:26 +02:00
requirements.txt replace Pipfile with a requirements.txt 2023-10-10 15:15:59 +02:00

Edm0nd

New version of the infamous IRC bot.

Installation

Clone the repository and create a virtualenv to install your dependencies.

pip install -r requirements.txt
python -m edmond

You can also use the provided Dockerfile if that's your thing:

# Build image with dependencies.
docker build -t edmond --build-arg UID=1000 --build-arg GID=1000 .
# Run container with config/resources/storage mount.
docker run -d \
    -it \
    -v $(pwd)/config.json:/app/config.json \
    -v $(pwd)/resources:/app/resources \
    -v $(pwd)/storage.json:/app/storage.json \
    edmond \
    -c config.json