You can definitely do this. Say you have a project called myproject, and apps named app1 and app2.

You can do this (development example -- don't use runserver in production):

./manage.py runserver --settings=myproject.app1.settings 127.0.0.1:8080
./manage.py runserver --settings=myproject.app2.settings 127.0.0.1:8085

Then you have two separate processes.

Shawn

--
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