diff options
author | 2020-10-10 13:12:51 +0100 | |
---|---|---|
committer | 2020-10-10 13:12:51 +0100 | |
commit | 6b7322c4e43fb28da05b6ddcc39d1de4e718f223 (patch) | |
tree | ff7db8ed7ba47e660c2a5f327cfd2a3ecb720fca /pydis_site/settings.py | |
parent | Merge pull request #378 from RohanJnr/user_endpoint (diff) | |
parent | Merge remote-tracking branch 'upstream/master' into feat/397-398-metricity-db... (diff) |
Merge pull request #409 from dementati/feat/397-398-metricity-db-and-api
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 5eb812ac..1ae97b86 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 |