From 189bf74a718339f1acca2175041c26d74b669c92 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 8 May 2021 02:35:45 +0200 Subject: [PATCH] harmonization of presets --- README.md | 12 ++++++------ docker-compose.yml | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 140bbce..c87b30c 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ With a [docker-compose](https://github.com/Confrerie-du-Kassoulait/KassouBot/blo docker run -d \ --name="KassouBot" \ mylloon/kassoubot \ - --TOKEN_DISCORD="yourValue" \ - --TOKEN_GENIUS="yourValue" \ - --TOKEN_REDDIT_CLIENT_ID="yourValue" \ - --TOKEN_REDDIT_CLIENT_SECRET="yourValue" \ - --TOKEN_REDDIT_USER_AGENT="yourValue" \ + --TOKEN_DISCORD="yourTokenDiscord" \ + --TOKEN_GENIUS="yourTokenGenius" \ + --TOKEN_REDDIT_CLIENT_ID="yourRedditClientID" \ + --TOKEN_REDDIT_CLIENT_SECRET="yourRedditClientSecret" \ + --TOKEN_REDDIT_USER_AGENT="yourRedditUserAgent" \ --TIMEZONE="yourTimezone" \ - --PREFIX="." + --PREFIX="yourPrefix" ``` To find reddit tokens, go to [this site](https://www.reddit.com/prefs/apps) and here are the instructions: ![instructions](https://i.imgur.com/tEzYKDA.png) diff --git a/docker-compose.yml b/docker-compose.yml index ec26ed5..390527a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,11 +4,11 @@ services: image: mylloon/kassoubot container_name: KassouBot environment: - - TOKEN_DISCORD=your-token-discord - - TOKEN_GENIUS=your-token-genius - - TOKEN_REDDIT_CLIENT_ID=your-reddit-client-id - - TOKEN_REDDIT_CLIENT_SECRET=your-reddit-client-secret - - TOKEN_REDDIT_USER_AGENT=your-reddit-user-agent - - TIMEZONE=your-timezone # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones - - PREFIX=your-prefix + - TOKEN_DISCORD=yourTokenDiscord + - TOKEN_GENIUS=yourTokenGenius + - TOKEN_REDDIT_CLIENT_ID=yourRedditClientID + - TOKEN_REDDIT_CLIENT_SECRET=yourRedditClientSecret + - TOKEN_REDDIT_USER_AGENT=yourRedditUserAgent + - TIMEZONE=yourTimezone # More info here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones + - PREFIX=yourPrefix restart: unless-stopped