From 72c44aad279af7288ef25fab6dffcf574d85f891 Mon Sep 17 00:00:00 2001 From: ekzyis Date: Fri, 24 Sep 2021 21:13:12 +0200 Subject: [PATCH] Add README --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..045355f --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# musicube + +### Development + +Requirements: + +``` +$ python --version +3.9.7 +``` + +Configure virtual environment: + +``` +$ python -m venv venv +$ source venv/bin/activate +``` + +Install requirements: + +``` +$ pip install -r requirements.txt +``` + +Configure ENV: + +``` +$ cp .env.template .env +# Write BOT_TOKEN into .env +``` + +Run bot: + +``` +$ python src/bot.py +```