| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- Installing django-oscar
- =======================
-
- Environment
- -----------
-
- Install pip and virtualenv (if you haven't already)::
-
- sudo apt-get install python-setuptools
- sudo easy_install pip
- sudo pip install virtualenv virtualenvwrapper
- echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.bashrc
-
- Create a new virtual env::
-
- mkvirtualenv --no-site-packages $PROJECTNAME
-
- Install oscar and its dependencies::
-
- pip install -e git+git://github.com/codeinthehole/django-oscar.git#egg=django-oscar
-
- This will install Django and a few other packages. Now create the project
-
- cd /path/to/my/workspace
- django-admin.py startproject $PROJECTNAME
-
- A nice extension now is to edit your ``~/.virtualenv/$PROJECTNAME/bin/postactivate`` file to contain::
-
- cd ~/path/to/my/workspace/$PROJECTNAME
-
- so that you can simply type ``workon $PROJECTNAME`` to jump into your project folder with the virtual
- environment set-up.
-
- Configure settings
- ------------------
-
- * Add ``'django.middleware.transaction.TransactionMiddleware'`` to your ``MIDDLEWARE_CLASSES`` tuple, making
- sure it comes BEFORE ``'django.contrib.auth.middleware.AuthenticationMiddleware'``.
-
- * Uncomment ``django.contrib.admin`` from ``INSTALLED_APPS``.
-
- Add the following to your `INSTALLED_APPS`::
-
- 'oscar',
- 'oscar.order',
- 'oscar.checkout',
- 'oscar.order_management',
- 'oscar.product',
- 'oscar.basket',
- 'oscar.payment',
- 'oscar.offer',
- 'oscar.address',
- 'oscar.stock',
- 'oscar.image',
- 'oscar.shipping',
- 'oscar.customer',
- 'oscar.search',
-
- Now fill in the normal settings (not related to django-oscar) within ``settings.py`` - eg ``DATABASES``, ``TIME_ZONE`` etc
-
- A vanilla install of django-oscar is now ready, you could now finish the process by running::
-
- ./manage.py syncdb
-
- However, in reality you will need to start extending the models to match your domain. It's best to do
- this before creating your initial schema.
-
- Configure urls
- --------------
-
- Oscar comes with a number of urls and views out of the box. These are
- recommendations rather than a requirement but you easily use them in your
- e-commerce site by adding the oscar urls to your projects local ``urls.py``
-
- (r'^', include('oscar.urls')),
-
- This will bring in all of oscar's defined urls. Of course you can pull in the
- urls for the individual apps if you prefer or simply define your own
|