I have one site on Django and it runs under VPS from virtualenv (let’s call it VE). Now I need to launch another site on the same VPS and now I’m interesting what will be better: install my new site to VE or install new virtualenv for new site?
Thanks!
New VE for each new project, unless you don’t have any special reasons. Using one VE for all your projects is the same as not using VE at all. 🙂