right now i have:
right now my working copies look like: ~/working/myreponame/trunk ~/working/myreponame/tags ~/working/myreponame/branches i would like to have a production environment and a development environment where: www.mywebsite.com => production (symlink to ~/working/myreponame/tags/current) beta.mywebsite.com => dev (symlink to ~/working/myreponame/trunk) what is the best way to set this up? i've tried creating a symlink for ~/webapps/django/myproject to point to trunk, but then i had problems doing python2.7 manage.py syncdb; it would say things like ImportError: No module named django.core.management any advice would be greatly appreciated. thanks asked 16 Apr '11, 04:44 razic3k |
There's no reason that your symlink approach shouldn't work. Regarding the
An example of the latter:
If you see more Hope that helps! answered 16 Apr '11, 13:09 seanf |
Are you using Virtual Environments at all? If not, that might be something for you to look into. I use it with GIT, but not quite the same way you are asking. answered 16 Apr '11, 12:30 bmeyer71 ♦♦ |