fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Poprawienie requirements.txt (w tym podwyższenie wymaganej wersji Django do 1.1.1...
[redakcja.git]
/
fabfile.py
diff --git
a/fabfile.py
b/fabfile.py
index
404ec52
..
6304aae
100644
(file)
--- a/
fabfile.py
+++ b/
fabfile.py
@@
-1,13
+1,21
@@
from __future__ import with_statement
from __future__ import with_statement
+from fabric.api import *
-from fabric.api import run, env, cd
def staging():
def staging():
- '''Add staging server to hosts'''
- env.hosts += ['platforma@stigma.nowoczesnapolska.org.pl:2222']
+ '''Use staging server'''
+ 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'):
+ require('project_dir', provided_by=['staging'])
+ 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')
+