diff options
author | 2020-10-06 21:29:34 +0200 | |
---|---|---|
committer | 2020-10-06 21:58:57 +0200 | |
commit | c8c6cb8754bd0917e35eb157925028a9b6f1dcb9 (patch) | |
tree | 7da1d95e76a21eca127b1239ed4f4e042d272da4 /pydis_site/settings.py | |
parent | Merge pull request #402 from python-discord/joseph/reduce-discord-scopes (diff) |
Added metricity db connection and user bot API
Diffstat (limited to 'pydis_site/settings.py')
-rw-r--r-- | pydis_site/settings.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pydis_site/settings.py b/pydis_site/settings.py index 3769fa25..2e78e458 100644 --- a/pydis_site/settings.py +++ b/pydis_site/settings.py @@ -172,7 +172,8 @@ WSGI_APPLICATION = 'pydis_site.wsgi.application' # https://docs.djangoproject.com/en/2.1/ref/settings/#databases DATABASES = { - 'default': env.db() + 'default': env.db(), + 'metricity': env.db('METRICITY_DB_URL'), } # Password validation |