harmonization of presets
This commit is contained in:
parent
716d9039bd
commit
189bf74a71
2 changed files with 13 additions and 13 deletions
12
README.md
12
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)
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in a new issue