Re: Django development environment (newbie)

2008-10-17 Thread bruno desthuilliers
On 16 oct, 21:49, Trastabuga <[EMAIL PROTECTED]> wrote: > Can I combine it with Apache so I can serve my static and index.html > with Apache and the rest with django-admin.py server? The builtin server is *not* intented for production use. --~--~-~--~~~---~--~~

Re: Django development environment (newbie)

2008-10-17 Thread bruno desthuilliers
On 16 oct, 23:00, "Hernan Olivera" <[EMAIL PROTECTED]> wrote: > > Can I combine it with Apache so I can serve my static and index.html > > with Apache and the rest with django-admin.py server? > > There is a very single configuration option in apache that > auto-reloads code too, in django

Re: Django development environment (newbie)

2008-10-16 Thread Jeff Anderson
Trastabuga wrote: > Can I combine it with Apache so I can serve my static and index.html > with Apache and the rest with django-admin.py server? > You could make your MEDIA_URL point to a URL that is hosted somewhere else, like Apache. I find it easiest to just use the static file view when

Re: Django development environment (newbie)

2008-10-16 Thread Hernan Olivera
> Can I combine it with Apache so I can serve my static and index.html > with Apache and the rest with django-admin.py server? There is a very single configuration option in apache that auto-reloads code too, in django documentation. -- Hernan Olivera

Re: Django development environment (newbie)

2008-10-16 Thread Trastabuga
Can I combine it with Apache so I can serve my static and index.html with Apache and the rest with django-admin.py server? Thank you, Andrew On Oct 16, 3:10 pm, "Ronaldo Zacarias Afonso" <[EMAIL PROTECTED]> wrote: > You can use django-admin.py runserver. Maybe it uses a different > approach,

Re: Django development environment (newbie)

2008-10-16 Thread Ronaldo Zacarias Afonso
You can use django-admin.py runserver. Maybe it uses a different approach, but in a nutshell, it's a web server that you can use to develop your django applications and it does what you want (You don't have to reboot the server every time you do a change in your apps). []s Ronaldo. On Thu,

Re: Django development environment (newbie)

2008-10-16 Thread bruno desthuilliers
On 16 oct, 20:26, Trastabuga <[EMAIL PROTECTED]> wrote: > Hi (snip background) > Basically the question is: "Can I connect to remote Python process > which handles http requests and add/modify functions there without > reloading the server?" Short answer : no. Anyway, on-the-fly editing of

Django development environment (newbie)

2008-10-16 Thread Trastabuga
Hi I am used to Emacs/Slime/Lisp running under detachtty so I can connect to the remote lisp image using Emacs/Slime and do my development in this environment. I'd like to give Python/Django a try, so I'd like to know is it possible to emulate a similar environment? Basically the question is: