From 31e4bc1c6c4683fbefc5c085d705317dcba4e628 Mon Sep 17 00:00:00 2001 From: nex Date: Thu, 19 Jan 2023 15:42:13 +0000 Subject: [PATCH] Add a readme --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..77cc711 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# LCC Bot +Yeah + +## Installing + +```shell +git clone https://github.com/EEKIM10/LCC-Bot.git +cd LCC-Bot +# Now you need to edit your config file +mv config.example.py config.py +$EDITOR config.py +docker build -t lcc-bot:latest . +docker run -d --name lcc-bot lcc-bot:latest +``` +The bot will now be running. + +### Without docker + +```shell +git clone https://github.com/EEKIM10/LCC-Bot.git +cd LCC-Bot +python3 -m venv venv +source venv/bin/activate +pip install -U pip wheel setuptools +pip install -r requirements.txt +mv config.example.py config.py +$EDITOR config.py +python3 main.py +```