Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. GET http://127.0.0.1:8000/static/js/editor/xyz.js?v=1 404 (NOT FOUND)
  2.  
  3. Django==1.3
  4. Fabric==1.0.1
  5. Jinja2==2.5.5
  6. PIL==1.1.7
  7. Pygments==1.3.1
  8. South==0.7.3
  9. Sphinx==1.0.5
  10. boto==2.0
  11. chunks==0.1
  12. django-devserver==0.2.1
  13. django-pagination==1.0.7
  14. django-sorting==0.1
  15. django-storages==1.1.3
  16. docutils==0.8
  17. gunicorn==0.12.1
  18. ipython==0.10.1
  19. paramiko==1.7.6
  20. pep8==0.6.1
  21. psycopg2==2.2.2
  22. pycrypto==2.0.1
  23. python-dateutil==1.5
  24. python-memcached==1.45
  25. wsgiref==0.1.2
  26.  
  27. STATIC_URL = '/static/'
  28.  
  29. STATICFILES_DIRS = (
  30. # **THIS IS USED WHEN YOUR STATIC FILES ARE IN SOME OTHER FOLDER ALSO**
  31.  
  32. # Put strings here, like "/home/html/static" or "C:/www/django/static".
  33. # Always use forward slashes, even on Windows.
  34.  
  35. # Don't forget to use absolute paths, not relative paths.
  36.  
  37. FOLDER_NAME,
  38. )
  39.  
  40. STATICFILES_FINDERS = (
  41. 'django.contrib.staticfiles.finders.FileSystemFinder',
  42. 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  43. 'django.contrib.staticfiles.finders.DefaultStorageFinder',
  44. )
  45.  
  46. INSTALLED_APPS = (
  47. # other apps
  48. 'django.contrib.staticfiles',
  49. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement