Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
David Winterbottom 89a3ecbdf3 Added first version of a dropapp command 15 лет назад
oscar Added first version of a dropapp command 15 лет назад
.gitignore Added payment models 15 лет назад
IDEAS Updated models so syncdb will run but everything still imcomplete 15 лет назад
README.md Fixed a few typos to get the admin panel to work 15 лет назад
TODO Moved models into subapps 15 лет назад
__init__.py Added payment models 15 лет назад
manage.py Added payment models 15 лет назад
requirements.txt Updated models so syncdb will run but everything still imcomplete 15 лет назад
settings.py Added first version of a dropapp command 15 лет назад
urls.py Fixed a few typos to get the admin panel to work 15 лет назад

README.md

Oscar - Ecommerce on Django

Named after Oscar Peterson (http://en.wikipedia.org/wiki/Oscar_Peterson), oscar is a Django implementation of Taoshop (a product from Tangent Labs). It’s fairly experimental at the moment.

Installation

Do the following from your workspace folder:

mkdir oscar
cd oscar
mkvirtualenv --no-site-packages oscar

After checking out your fork, install all dependencies:

pip install -r requirements.txt

Aims of project

  • To be a portable Django application that provides ecommerce functionality.
  • To comprise a set of loosely coupled apps that can be overridden in projects (interdependence is on interfaces only)
  • To allow core objects (eg products, orders) to be extended within a specific project