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 \
|
docker run -d \
|
||||||
--name="KassouBot" \
|
--name="KassouBot" \
|
||||||
mylloon/kassoubot \
|
mylloon/kassoubot \
|
||||||
--TOKEN_DISCORD="yourValue" \
|
--TOKEN_DISCORD="yourTokenDiscord" \
|
||||||
--TOKEN_GENIUS="yourValue" \
|
--TOKEN_GENIUS="yourTokenGenius" \
|
||||||
--TOKEN_REDDIT_CLIENT_ID="yourValue" \
|
--TOKEN_REDDIT_CLIENT_ID="yourRedditClientID" \
|
||||||
--TOKEN_REDDIT_CLIENT_SECRET="yourValue" \
|
--TOKEN_REDDIT_CLIENT_SECRET="yourRedditClientSecret" \
|
||||||
--TOKEN_REDDIT_USER_AGENT="yourValue" \
|
--TOKEN_REDDIT_USER_AGENT="yourRedditUserAgent" \
|
||||||
--TIMEZONE="yourTimezone" \
|
--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)
|
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
|
image: mylloon/kassoubot
|
||||||
container_name: KassouBot
|
container_name: KassouBot
|
||||||
environment:
|
environment:
|
||||||
- TOKEN_DISCORD=your-token-discord
|
- TOKEN_DISCORD=yourTokenDiscord
|
||||||
- TOKEN_GENIUS=your-token-genius
|
- TOKEN_GENIUS=yourTokenGenius
|
||||||
- TOKEN_REDDIT_CLIENT_ID=your-reddit-client-id
|
- TOKEN_REDDIT_CLIENT_ID=yourRedditClientID
|
||||||
- TOKEN_REDDIT_CLIENT_SECRET=your-reddit-client-secret
|
- TOKEN_REDDIT_CLIENT_SECRET=yourRedditClientSecret
|
||||||
- TOKEN_REDDIT_USER_AGENT=your-reddit-user-agent
|
- TOKEN_REDDIT_USER_AGENT=yourRedditUserAgent
|
||||||
- TIMEZONE=your-timezone # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
- TIMEZONE=yourTimezone # More info here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||||||
- PREFIX=your-prefix
|
- PREFIX=yourPrefix
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
Reference in a new issue