您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
David Winterbottom d9a1c08733 Fixed a few typos to get the admin panel to work 15 年前
oscar Fixed a few typos to get the admin panel to work 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 Fixed a few typos to get the admin panel to work 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