fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
359e0f4
)
Dodanie restartowania serwera do fabfile.
author
zuber
<marek@stepniowski.com>
Tue, 6 Oct 2009 15:55:07 +0000
(17:55 +0200)
committer
zuber
<marek@stepniowski.com>
Tue, 6 Oct 2009 15:55:07 +0000
(17:55 +0200)
fabfile.py
patch
|
blob
|
history
diff --git
a/fabfile.py
b/fabfile.py
index
1cf2679
..
39b9582
100644
(file)
--- a/
fabfile.py
+++ b/
fabfile.py
@@
-2,10
+2,17
@@
from fabric.api import run, env, cd
def staging():
'''Add staging server to hosts'''
def staging():
'''Add staging server to hosts'''
- env.hosts += ['platforma@stigma.nowoczesnapolska.org.pl:2222']
+ env.hosts = ['platforma@stigma.nowoczesnapolska.org.pl:2222']
+ env.project_dir = '/home/platforma/platforma'
def deploy():
'''Deploy server'''
def deploy():
'''Deploy server'''
- with cd(
'platforma'
):
+ with cd(
env.project_dir
):
run('git pull')
run('./project/manage.py syncdb')
run('git pull')
run('./project/manage.py syncdb')
+ restart_server()
+
+def restart_server():
+ with cd(env.project_dir):
+ run('touch project/dispatch.wsgi')
+