|
|
@@ -62,4 +62,16 @@ A vanilla install of django-oscar is now ready, you could now finish the process
|
|
62
|
62
|
./manage.py syncdb
|
|
63
|
63
|
|
|
64
|
64
|
However, in reality you will need to start extending the models to match your domain. It's best to do
|
|
65
|
|
-this before creating your initial schema.
|
|
|
65
|
+this before creating your initial schema.
|
|
|
66
|
+
|
|
|
67
|
+Configure urls
|
|
|
68
|
+--------------
|
|
|
69
|
+
|
|
|
70
|
+Oscar comes with a number of urls and views out of the box. These are
|
|
|
71
|
+recommendations rather than a requirement but you easily use them in your
|
|
|
72
|
+e-commerce site by adding the oscar urls to your projects local ``urls.py``
|
|
|
73
|
+
|
|
|
74
|
+ (r'^', include('oscar.urls')),
|
|
|
75
|
+
|
|
|
76
|
+This will bring in all of oscar's defined urls. Of course you can pull in the
|
|
|
77
|
+urls for the individual apps if you prefer or simply define your own
|