fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Added gunicorn to production

This commit is contained in:
Felipe Martin 2014-05-23 11:31:23 +02:00
parent a5b740b814
commit 71b5b4c778
2 changed files with 5 additions and 0 deletions

View File

@ -1 +1,2 @@
-r ../requirements.txt
gunicorn==18.0

View File

@ -10,6 +10,10 @@ DATABASES = {
'default': dj_database_url.parse(os.environ['APP_DATABASE_URL'])
}
INSTALLED_APPS = (
'gunicorn',
)
STATIC_ROOT = os.environ['APP_STATIC_ROOT']
MEDIA_ROOT = os.environ['APP_MEDIA_ROOT']