fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Updated production settings with MEDIA_URL and STATIC_URL settings. Tap #18

This commit is contained in:
Felipe Martin 2014-05-26 17:27:03 +02:00
parent fe649ad9ba
commit 1e3c0df555
1 changed files with 3 additions and 0 deletions

View File

@ -15,7 +15,10 @@ INSTALLED_APPS = (
)
STATIC_ROOT = os.environ['APP_STATIC_ROOT']
STATIC_URL = os.environ['APP_STATIC_URL']
MEDIA_ROOT = os.environ['APP_MEDIA_ROOT']
MEDIA_URL = os.environ['APP_MEDIA_URL']
SECRET_KEY = os.environ['APP_SECRET_KEY']