changed fabfile to not attempt to syncdb / migrate. i will do these manually.

This commit is contained in:
sanj 2010-08-29 22:41:44 +05:30
parent 98f0013d8b
commit c562bbce8b

2
fabfile.py vendored
View File

@ -43,5 +43,5 @@ def setup():
def deploy():
bzr_push()
bzr_update()
virtual_run('python %(project_root)s/%(project_name)s/manage.py syncdb;python %(project_root)s/%(project_name)s/manage.py migrate'%env)
# virtual_run('python %(project_root)s/%(project_name)s/manage.py syncdb;python %(project_root)s/%(project_name)s/manage.py migrate'%env)
run('touch %(project_root)s/wsgi/django.wsgi'%env)