remove discord env no longer used

This commit is contained in:
Mylloon 2021-08-20 08:39:28 +02:00
parent a9b8511b8f
commit 4470d0d44c
2 changed files with 3 additions and 5 deletions

View file

@ -8,7 +8,7 @@ Requires Python `3.9.5`.
Install necessary packages:
```bash
```batch
python3 -m pip install -r requirements.txt
```
@ -22,7 +22,7 @@ Rename `.envexample` file in `.env` in root folder, then open the file and compl
Start Bot:
```bash
```batch
cd src
python3 main.py
```
@ -31,14 +31,13 @@ python3 main.py
With a [docker-compose](https://gitlab.com/ConfrerieDuKassoulait/Bot-Tom/-/blob/main/docker-compose.yml) or in command line:
```bash
```batch
docker run -d \
--name="TwitchBot" \
registry.gitlab.com/confreriedukassoulait/bot-tom:latest \
--ACCESS_TOKEN="yourAccessToken" \
--PREFIX="yourPrefix" \
--CHANNEL="yourChannel(s)" \
--DISCORD="yourDiscordLink" \
-v /here/your/path/:/db
```

View file

@ -7,7 +7,6 @@ services:
- ACCESS_TOKEN=yourAccessToken
- PREFIX=yourPrefix
- CHANNEL=yourChannel(s)
- DISCORD=yourDiscordLink
volumes:
- /here/your/path/:/db
restart: unless-stopped