What is your optimal filesystem folder scheme? I've used to keep everything in one directory (project-enviroment, that was itself a virtualenv directory) and then put everything there, but now I am finding hard to manage this as it became a little mess. Now I think about something like:
/ home/ project_user/ env/ (<- virtual env goes here, no custom things, set up with pip requiremnts ) some_project/ ( <- this is project directory easily keeping up to date with some versioning system) runmanager/ ( <- collection of generic scripts for running django projects etc, versioned ) runtime/ (<- here goes all runtime stuff, like run, logs, conf, this should be preconfigured by invoking a specific command from runmanager, this cannot be versioned, these are installation specific files) any better idea/practices? -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.