Re: How to organize a django website

2008-02-06 Thread Anton Kovalyov
Hi Brandon, Brandon Taylor wrote: > Hello everyone, > > I'm just getting started, so please bear with me. How should I > organize my website? In our project, we use a little bit different source code organization: / |-- apps/ | |-- app1/ | |-- app2/ | |-- ... | |-- special_app

Re: How to organize a django website

2008-02-06 Thread Brandon Taylor
Thanks guys! I'm about halfway through the Definitive Guide book, and I like what I've seen so far. I'll just have to dig in, and start coding. I've seen quite a few posts about how to organize a "typical" website, so after I get one working I'll post an overview of what I did and where I put thin

Re: How to organize a django website

2008-02-06 Thread Rajesh Dhawan
Hi Brandon, For additional insight on this topic, you might want to check out this entry from James Bennett's fantastic blog, The B-List: http://www.b-list.org/weblog/2006/sep/10/django-tips-laying-out-application/ -Rajesh D --~--~-~--~~~---~--~~ You received th

Re: How to organize a django website

2008-02-06 Thread prz
Daniel Roseman wrote: > > On Feb 6, 1:17 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote: > >> Hello everyone, >> >> I'm just getting started, so please bear with me. How should I >> organize my website? I haven't seen a definitive example of where to >> put settings files, templates, applications

Re: How to organize a django website

2008-02-06 Thread Brandon Taylor
Thanks for the advice Daniel. So something like this would be better... /my_shared_web_host_folder# not accessible /my_django_project # not accessible /source settings.py, etc /templates base_template.html, etc /app1 /app2, etc /public_html - website(s) root

Re: How to organize a django website

2008-02-06 Thread Daniel Roseman
On Feb 6, 1:17 pm, Brandon Taylor <[EMAIL PROTECTED]> wrote: > Hello everyone, > > I'm just getting started, so please bear with me. How should I > organize my website? I haven't seen a definitive example of where to > put settings files, templates, applications, images, stylesheets, etc. > > My

How to organize a django website

2008-02-06 Thread Brandon Taylor
Hello everyone, I'm just getting started, so please bear with me. How should I organize my website? I haven't seen a definitive example of where to put settings files, templates, applications, images, stylesheets, etc. My best guess would be something like: /website_root /source settings.