> 1.  Django .90 installed so that the app works.
> 2. To have this app up and running with .90.
> 3.  Django 1.0 installed so that I can shut down .90 and run 1.0.
> 4.  Run 1 so that I can recode my app for 1.0

For the dev-server, it's easy (at least in a Bash shell...for 
others, YMMV)  Assuming 0.90 is in /opt/django/0.90 and 1.0 os in 
/opt/django/1.0/ you should be able to do something like

   bash$ cd /path/to/my/production/code/
   bash$ PYTHONPATH=/opt/django/0.90/ ./manage.py runserver

If you've cloned your production code to update to 1.0
   bash$ cd /path/to/my/development/code/

then run against 1.0 django:

   bash$ PYTHONPATH=/opt/django/1.0/ ./manage.py runserver

-tim




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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