From efb078fef9c2db77fa6a75893d4d5fc2dc418513 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 7 Apr 2025 01:14:48 +0300 Subject: [PATCH] feat: update docs --- README.md | 6 ++---- install.sh | 4 ---- start.sh | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) delete mode 100755 install.sh diff --git a/README.md b/README.md index bcf8d7d..439c081 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,13 @@ This is a simple bot made for the [Minearchy Discord server](https://discord.gg/2n6T78JS9k). -## Installing +## Running 1: Clone this repo and `cd` into it. 2: Edit the `./minearchy_bot/config.example.json` to your liking and rename it to `config.json`. -3: Install dependencies using `./install.sh`. - -4: Run `./start.sh`. +4: Run `./start.sh`, requires `uv`. ## License diff --git a/install.sh b/install.sh deleted file mode 100755 index b9c5394..0000000 --- a/install.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -python3 -m pip install -U poetry -python3 -m poetry install --only main diff --git a/start.sh b/start.sh index 7cb019d..5cd63bf 100755 --- a/start.sh +++ b/start.sh @@ -1,3 +1,3 @@ #!/bin/bash -python3 -m poetry run bot +uv run --module minearchy_bot -- $@