Re: Correct folder layout for a big Django application

2012-01-07 Thread IgorS
Thank you, yati. Thank you Waldek. Your responses are much appreciated. It seems that my question was not clear. This is all my fault. I was searching for some sort of "the most recommended" or "optimal" folder layout INSIDE the application folder. In other words, a layout where all the code, sett

Re: Correct folder layout for a big Django application

2012-01-04 Thread Waldek Herka
Hi, I'd recommend 'reviewboard' - code.google.com/p/reviewboard/ I learned great deal from this application. It is very mature and well thought through. Cheers, Waldek On Jan 4, 6:51 pm, IgorS wrote: > Can someone recommend a big existing Django application with the > "right" folder layout? > > I

Re: Correct folder layout for a big Django application

2012-01-04 Thread yati sagade
Not that I have done "big" apps, but placing all the static content in {{project_root}}/static/ under appropriate subdirs should do fine - e.g., /static/js, /static/css, /static/images etc. As for the other (dyanmic) parts, the django project and app layouts should be enough. I think if you hunt fo

Correct folder layout for a big Django application

2012-01-04 Thread IgorS
Can someone recommend a big existing Django application with the "right" folder layout? I would like to learn from some big application that has multiple model, test, view, template, .js, .css, image, utility, etc. files, which are nicely organized in different folders positioned below the applica