I use roughly the same layout with the addition of trunk,tags,branches directories, and haven't hit any wall so far. As for the settings.py issue I have the following at the end of my settings.py file:
try: from settings_development import * except: # ImportError: pass which checks for a file called settings_development that only exists on my computer. This file overrides the paths, and the mysql settings, sets a new variable called DEVELOPMENT=True and is ignored by svn. In the same manner I have this in my top urls.py file: from django.conf import settings try: if settings.DEVELOPMENT: urlpatterns += patterns('', (r'^site_media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': 'site_media', 'show_indexes': True}), url(r'^rosetta-i18n/',include('rosetta.urls')), ) except: pass which enables rosetta for translations and uses django's own static file server if running local or uses Apache if running on the production site. On Sep 4, 11:10 am, Robert Dailey <[EMAIL PROTECTED]> wrote: > Hi, > > First, let me start by explaining what my goals are: > - Have a django project & its apps in version control > - Have all of the templates the apps will use in the same version > control > - Have all static content (images, css, etc) in the same version > control. > > So far, this is the directory structure I've come up with: > > django/ > my_project/ > app1/ > app2/ > templates/ > static/ > images/ > styles/ > > Is this a good structure? Using this structure, I can work on > everything involved in making my website through a single working copy > in Subversion. Do you guys have any better suggestions? My main > concern with the structure I presented above is how I will configure > Apache2 to handle serving static content. Also, the fact that Django > requires an absolute path for the templates directory makes this more > of a management nightmare. --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---