From 4470d0d44c0b63b1012e47480587c66927f7d79a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 20 Aug 2021 08:39:28 +0200 Subject: [PATCH] remove discord env no longer used --- README.md | 7 +++---- docker-compose.yml | 1 - 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c9e2eb3..ef28b9f 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/docker-compose.yml b/docker-compose.yml index cfaa2d3..919d288 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,6 @@ services: - ACCESS_TOKEN=yourAccessToken - PREFIX=yourPrefix - CHANNEL=yourChannel(s) - - DISCORD=yourDiscordLink volumes: - /here/your/path/:/db restart: unless-stopped