Dodanie fabfile pozwalające na wdrożenie nowej wersji projektu na stigma (przy użyciu...
authorzuber <marek@stepniowski.com>
Tue, 6 Oct 2009 11:39:37 +0000 (13:39 +0200)
committerzuber <marek@stepniowski.com>
Tue, 6 Oct 2009 11:39:37 +0000 (13:39 +0200)
fabfile.py [new file with mode: 0644]

diff --git a/fabfile.py b/fabfile.py
new file mode 100644 (file)
index 0000000..1cf2679
--- /dev/null
@@ -0,0 +1,11 @@
+from fabric.api import run, env, cd
+
+def staging():
+    '''Add staging server to hosts'''
+    env.hosts += ['platforma@stigma.nowoczesnapolska.org.pl:2222']
+
+def deploy():
+    '''Deploy server'''
+    with cd('platforma'):
+        run('git pull')
+        run('./project/manage.py syncdb')