Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hidekuro authored Jul 26, 2023
1 parent b8d5b4e commit 1bcd710
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ You will get result: 3, 4, 4, and 4 peoples teams.
## System Requirements

- Python 3+
- `pip`
- pipenv (pipx recommended)

```bash
python3 -m pip install -U pip
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install pipenv
```

## Roles Requirements

Expand All @@ -46,16 +53,25 @@ python3 -m venv .venv
source .venv/bin/activate

# install pip modules
pip install -r requirements.txt
pipenv install
# or...
# pip install -r requirements.txt

# put your APP BOT USER's Token into .env file
# https://discordapp.com/developers/applications/me
echo BOT_TOKEN=abcde12345yourtoken > .env

# start bot in background
# this script creates teambot.pid on current directory.
bash ./start.sh
```

To exit, do the following.

```bash
kill -TERM $(cat teambot.pid)
```

## LICENSE

The MIT License.

0 comments on commit 1bcd710

Please sign in to comment.