edmond | ||
resources | ||
.gitignore | ||
config.json.example | ||
Dockerfile | ||
Pipfile | ||
Pipfile.lock | ||
plugins-requirements.txt | ||
pyproject.toml | ||
README.md |
Edm0nd
New version of the infamous IRC bot.
Installation
Clone the repository.
The preferred installation way is using Docker:
# 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
Else you can install dependencies and run it in a virtual env:
pipenv install
pipenv run pip install -r edmond/plugins/requirements.txt
pipenv run python -m edmond