I\'m using Django==1.5.5 and My django app is structured as
Django==1.5.5
--project/ ----project/ ------settings.py ------urls.py ----app1/ ------models.py --
Only for development. Set DEBUG = True in settings.py file and add 'django.contrib.staticfiles' in INSTALLED_APPS. Next, add these lines of code to settings.py file of your project:
STATIC_URL = '/static/' STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)