You can simply append the path to your 'lib/shared' directory to your system path in the settings.py file.
sys.path.append(os.path.join(os.path.dirname(__file__), 'lib/shared')) This should do. Thanks, Subhranath Chunder. On Fri, Jan 7, 2011 at 9:20 PM, Mo Mughrabi <[email protected]> wrote: > Hi, > > am trying to organize some commonly used apps in my libs/shared folder > inside my project. > > When I moved the file there, I just appended libs.shared.appname to the > INSTALLED_APP and it worked. but the views are not working, i noticed the > urls that needed to be appended as well. What else am missing? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<django-users%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. > -- You received this message because you are subscribed to the Google Groups "Django 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/django-users?hl=en.

