diff options
| author | 2020-05-17 19:50:12 +0200 | |
|---|---|---|
| committer | 2020-05-17 19:55:05 +0200 | |
| commit | ecf7f24f05b9baa8705f3b2c2d044a42292fbc07 (patch) | |
| tree | 39da17d2e469c27329eba191789b1b45dc855c89 /config-default.yml | |
| parent | Changes discord-py to discord.py in Pipfile (diff) | |
Add the REDIS_PASSWORD environment variable
In production, we will need this password to make a connection to Redis.
Diffstat (limited to 'config-default.yml')
| -rw-r--r-- | config-default.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config-default.yml b/config-default.yml index 722afa41b..3b58d9099 100644 --- a/config-default.yml +++ b/config-default.yml @@ -2,8 +2,11 @@ bot: prefix: "!" token: !ENV "BOT_TOKEN" sentry_dsn: !ENV "BOT_SENTRY_DSN" - redis_host: "redis" - redis_port: 6379 + + redis: + host: "redis" + port: 6379 + password: !ENV "REDIS_PASSWORD" stats: statsd_host: "graphite" |