Integrating Satchmo with any other Django project, CMS or not, is going to be a matter of ensuring that you have the following two key items in your settings.py (and/or local_settings.py): DJANGO_PROJECT = 'parentProject' DJANGO_SETTINGS_MODULE = 'parentProject.settings'
Aside from that, you want to ensure that you have urls configured properly, and also ensure that you don't wind up having namespace collisions among models. I haven't looked at Pinax in a couple months, but I wouldn't doubt that both Pinax and Satchmo claim some rather generic model names (such as Category). Satchmo can be configured to serve up the shop from any base url pattern, as the installation docs explain. Aside from properly configuring your settings.py and urls.py, what else would need to be documented to combine the two projects? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en -~----------~----~----~----~------~----~------~--~---
