Add gunicorn and psycopg2 for production use

This commit is contained in:
Danielle McLean 2017-10-23 15:04:09 +11:00
parent 093c08a1a4
commit 24fc20d751
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
3 changed files with 55 additions and 1 deletions

View file

@ -0,0 +1,9 @@
from .base import *
from .base import DATABASES
ALLOWED_HOSTS = ['00dani.me']
DATABASES['default'] = {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'lemoncurry',
'USER': 'lemoncurry',
}