specified where to find static files

This commit is contained in:
Stephen McQuay 2013-04-23 17:51:59 -07:00
parent d6113a5a6d
commit f3bc3a54d8
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,5 @@
# Django settings for mmg project.
import os
DEBUG = True
TEMPLATE_DEBUG = DEBUG
@ -64,10 +65,7 @@ STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
'/Users/smcquay/src/mmg/static'
os.path.expanduser('~/src/mmg/static'),
)
# List of finder classes that know how to find static files in