I recently came across the edx project and was fiddling with it. Something that I tried to play with was the idea of importing its features into another project.
the basic structure of this project is
edx-platform
-cms
-lms
-common
one platform that runs two projects and also has some shared modules.
What I tried doing was to set up a different project in django 1.5 and try to import all the projects as per this post, like so.
sys.path.append('/home/user/edx_all/edx-platform/cms')
sys.path.append('/home/user/edx_all/edx-platform/lms')
sys.path.append('/home/user/edx_all/edx-platform/common')
So I am wondering what Import or some other factor about the project did I miss out? Or is this not possible at all with django?
Thanks in advance for any help.