You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

deploying.rst 954B

1234567891011121314151617181920212223242526
  1. ===============
  2. Deploying Oscar
  3. ===============
  4. Oscar is a just a set of Django apps - it doesn't have any special deployment
  5. requirements. This page lists a couple of common things to be aware of when
  6. deploying your Oscar site.
  7. Performance
  8. -----------
  9. Oscar's templates are split into many partials and so it is recommended to use
  10. the `cached template loader`_.
  11. Sorl requires a cache backend to perform efficiently so ensure your ``CACHES``
  12. setting points to a real key-value cache (like memcache).
  13. Security
  14. --------
  15. Oscar relies on the Django framework for security measures and therefore no
  16. Oscar specific configurations with regard to security are in place. See
  17. `Django's guidelines for security`_ for more information.
  18. .. _`Django's guidelines for security`: _https://docs.djangoproject.com/en/dev/topics/security/
  19. .. _`cached template loader`: https://docs.djangoproject.com/en/dev/ref/templates/api/#django.template.loaders.cached.Loader