You should NEVER put your Python files inside apache's htdocs (there's
no need to do this). Only the media files should be in webaccessible
locations. You could put both the testing and production code in your
home directory:

/home/joe/test/<here goes your projects testing code>
/home/joe/production/<here goes your projects production code>
/home/joe/django/<here goes the django code>

You could of course setup a more advanced setup with multiple versions,
tags, branches etc. I use Subversion to store all versions. You could
also put the apps into a special directory so all projects have access
to all apps.

Your apache setup should be as explained here:
http://www.djangoproject.com/documentation/modpython/

I symlink my production directory into my Python site-packages
directory, so mod_python will be abled to find it.

Cheers,

Rudolph


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to