harmonization of presets

This commit is contained in:
Mylloon 2021-05-08 02:35:45 +02:00
parent 716d9039bd
commit 189bf74a71
2 changed files with 13 additions and 13 deletions

View file

@ -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)

View file

@ -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