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.

1234567891011121314151617181920212223242526272829303132333435
  1. Quick start
  2. ===========
  3. We can do this quickly. Create a virtualenv using virtualenvwrapper and
  4. install django and django-oscar::
  5. mkvirtualenv --no-site-packages vanilla
  6. pip install django django-oscar
  7. Take a copy of the sameple settings file, found at::
  8. https://github.com/tangentlabs/django-oscar/blob/master/examples/vanilla/settings_quickstart.py
  9. Import the sample products and images::
  10. wget https://github.com/tangentlabs/django-oscar/blob/master/examples/sample-data/books-catalogue.csv
  11. python manage.py import_catalogue books-catalogue.csv
  12. wget https://github.com/tangentlabs/django-oscar/blob/master/examples/sample-data/book-images.tar.gz
  13. python manage.py import_images book-images.tar.gz
  14. And there you have it: a fully functional ecommerce site with a product range of 100 popular books.
  15. For
  16. instance, if every product in your shop has an associated video, then
  17. django-oscar lets you add such a field to your core product model. You don't
  18. have to model your domain logic using the `Entity-Attribute-Value`_ pattern or
  19. other such meta-nastiness - your core models should reflect the specifics of
  20. your domain.
  21. .. _`Entity-Attribute-Value`: http://en.wikipedia.org/wiki/Entity%E2%80%93attribute%E2%80%93value_model