If you are in development, you can just use django dev server. "./
manage.py runserver" from your project.

If you have deployed your app, then the best way to avoid restarting
is to use mod_wsgi's reloading feature.
If you deploy in daemon mode, you can just touch the wsgi file to
trigger a reload. That is the easiest way.

If you want django dev server-like automatic reload on change, you
should look at this:
http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode

Some links for deploying django using mod_wsgi.
http://docs.djangoproject.com/en/1.1/howto/deployment/modwsgi/#howto-deployment-modwsgi
http://code.google.com/p/modwsgi/wiki/IntegrationWithDjango

Hope that helps,
Alex

On Feb 3, 5:30 am, Zygmunt <[email protected]> wrote:
> Hi!
> When i create some changes in my page, i need restart apache server.
> How can i avoid restarting?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to