Edm0nd/README.md

29 lines
624 B
Markdown
Raw Normal View History

2024-08-25 21:15:26 +02:00
# Edm0nd
New version of the infamous IRC bot.
2024-08-25 21:15:26 +02:00
## Installation
2024-08-25 21:15:26 +02:00
Clone the repository and create a virtualenv to install your dependencies.
2020-10-09 22:34:32 +02:00
2024-08-25 21:15:26 +02:00
```bash
pip install -r requirements.txt
python -m edmond
```
2024-08-25 21:15:26 +02:00
You can also use the provided Dockerfile if that's your thing:
2020-10-09 22:34:32 +02:00
```bash
# 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
2020-10-09 22:34:32 +02:00
```