fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
#1483: txt generation only for non-empty books
[wolnelektury.git]
/
fabfile.py
diff --git
a/fabfile.py
b/fabfile.py
index
855d6bd
..
812d2e0
100644
(file)
--- a/
fabfile.py
+++ b/
fabfile.py
@@
-31,6
+31,14
@@
def production():
env.virtualenv = '/opt/lektury/basevirtualenv/bin/virtualenv'
env.pip = '/opt/lektury/basevirtualenv/bin/pip'
env.virtualenv = '/opt/lektury/basevirtualenv/bin/virtualenv'
env.pip = '/opt/lektury/basevirtualenv/bin/pip'
+def giewont():
+ """Use giewont server"""
+ env.hosts = ['giewont.icm.edu.pl']
+ env.user = 'rczajka'
+ env.path = '/srv/wolnelektury.pl'
+ env.python = '/usr/bin/python'
+ env.virtualenv = '/usr/bin/virtualenv'
+ env.pip = '/usr/bin/pip'
# =========
# = Tasks =
# =========
# = Tasks =
@@
-47,7
+55,7
@@
def setup():
"""
require('hosts', 'path', provided_by=[staging, production])
"""
require('hosts', 'path', provided_by=[staging, production])
- run('mkdir -p %(path)s; cd %(path)s; %(virtualenv)s
--no-site-packages
.;' % env, pty=True)
+ run('mkdir -p %(path)s; cd %(path)s; %(virtualenv)s .;' % env, pty=True)
run('cd %(path)s; mkdir releases; mkdir shared; mkdir packages;' % env, pty=True)
run('cd %(path)s/releases; ln -s . current; ln -s . previous' % env, pty=True)
deploy()
run('cd %(path)s; mkdir releases; mkdir shared; mkdir packages;' % env, pty=True)
run('cd %(path)s/releases; ln -s . current; ln -s . previous' % env, pty=True)
deploy()
@@
-157,4
+165,4
@@
def migrate():
def restart_webserver():
"Restart the web server"
print '>>> restart webserver'
def restart_webserver():
"Restart the web server"
print '>>> restart webserver'
- run('touch %(path)s/
releases/current/%(project_name)s/
%(project_name)s.wsgi' % env)
+ run('touch %(path)s/%(project_name)s.wsgi' % env)