Re: Best Practices to Make your Apps Portable

2007-07-27 Thread Toby Dylan Hocking
> I just added it to the wiki: > > http://code.djangoproject.com/wiki/BestPracticesToWorkWith3rdPartyAppsAndMakingYoursPortable Looking there, I think you made a typo. The directory diagrams for specific apps and generic apps are the same. Furthermore, I can see how this system worked for you

Re: Best Practices to Make your Apps Portable

2007-07-27 Thread JeffH
I use the following: my pythonpath includes /usr/local/lib/django/ within which I have: apps/ app1/(models,views,urls) app2/(models,views,urls), etc. vhosts/ vhost1/(settings,urls) vhost2/(settings,urls), etc. within the config for each apache virtual host

Re: Best Practices to Make your Apps Portable

2007-07-27 Thread Sebastian Macias
I just added it to the wiki: http://code.djangoproject.com/wiki/BestPracticesToWorkWith3rdPartyAppsAndMakingYoursPortable It's available in the resources page. http://code.djangoproject.com/wiki/DjangoResources Best, Sebastian Macias On Jul 26, 12:36 pm, Carl Karsten <[EMAIL PROTECTED]>

Re: Best Practices to Make your Apps Portable

2007-07-26 Thread Carl Karsten
Sebastian Macias wrote: > Thanks a lot for the feedback everyone. > > I have come up a perfect setup and folder structure (at least > perfect for my needs) that will allow me to work on generic apps and > project specific apps efficiently and just wanted to share it with > everyone in case it

Re: Best Practices to Make your Apps Portable

2007-07-26 Thread Ryan
I like this setup. I will use this as a basis for my own upcoming project. Thanks. RG On Jul 25, 11:12 am, Sebastian Macias <[EMAIL PROTECTED]> wrote: > Thanks a lot for the feedback everyone. > > I have come up a perfect setup and folder structure (at least > perfect for my needs) that will

Re: Best Practices to Make your Apps Portable

2007-07-25 Thread Sebastian Macias
Thanks a lot for the feedback everyone. I have come up a perfect setup and folder structure (at least perfect for my needs) that will allow me to work on generic apps and project specific apps efficiently and just wanted to share it with everyone in case it can save a anyone a headache.

Re: Best Practices to Make your Apps Portable

2007-07-25 Thread Wolfram Kriesing
That's a valuable info. To me it seemed some Django-standard and those things are supposed to be well thought through, therefore we also broke our heads over it a couple times ... Thanks for the info. Wolfram On 7/25/07, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 7/24/07, Sebastian

Re: Best Practices to Make your Apps Portable

2007-07-25 Thread Adrian Holovaty
On 7/24/07, Sebastian Macias <[EMAIL PROTECTED]> wrote: > My dilemma is... what is the point of having projects and apps if the > applications created for my project won't be portable in other > projects (becase the namespaces will always start with the project > name). I can't just copy and app