add deploy script
authorymh <ymh.work@gmail.com>
Tue, 06 Jan 2015 13:26:14 +0100
changeset 27 42e4b9c433cc
parent 26 e3affd6625d6
child 28 b196557df509
add deploy script
sbin/sync/fabfile.py
sbin/sync/settings.py
sbin/sync/settings.py.tmpl
virtualenv/requirements_srvr.txt
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sbin/sync/fabfile.py	Tue Jan 06 13:26:14 2015 +0100
@@ -0,0 +1,72 @@
+from fabric.api import env, local, put, run, cd, lcd, task, prefix
+from fabric.contrib.files import exists
+from fabric.colors import green
+import tempfile
+import shutil
+import os
+import settings
+
+
+def __init():
+    if not env.get('temp_folder', None):
+        env['temp_folder'] = tempfile.mkdtemp()
+        print(green("working folder is %s" % env['temp_folder']))
+
+def __clean():
+    if env.get('temp_folder', None):
+        print(green("Removing %s" % env['temp_folder']))
+        shutil.rmtree(env['temp_folder'])
+
+def get_version_path():
+    return os.path.join(env['temp_folder'], env['version'])
+
+def export():
+    local('hg archive -r %s %s' % (env['version'], get_version_path()) )
+
+def pack():
+    # create a new source distribution as tarball
+    with lcd(get_version_path()):
+        local('python setup.py sdist --formats=gztar', capture=False)
+
+def create_virtualenv():
+    with lcd(get_version_path()):
+        tmpd = run('mktemp -d').strip()
+        put('virtualenv/*.txt', tmpd)
+        run('virtualenv -p /usr/bin/python3 %s' % env.srv_venv_path)
+        with prefix('source %s/bin/activate' % env.srv_venv_path):
+            run('pip install -r %s/requirements.txt' % tmpd)
+            run('pip install -r %s/requirements_srvr.txt' % tmpd)
+        run('rm -fr %s' % tmpd)
+
+
+def deploy():
+    # figure out the release name and version
+    with lcd(get_version_path()):
+        dist = local('python setup.py --fullname', capture=True).strip()
+        print(green("dist is %s" % dist))
+
+        # upload the source tarball to the temporary folder on the server
+        put('dist/%s.tar.gz' % dist, '/tmp/%s.tar.gz' % dist)
+        # create a place where we can unzip the tarball, then enter
+        # that directory and unzip it
+        # now setup the package with our virtual environment's
+        # python interpreter
+        with prefix('source %s/bin/activate' % env.srv_venv_path):
+            run('pip install -U --force-reinstall /tmp/%s.tar.gz' % dist)
+        # now that all is set up, delete the folder again
+
+        run('rm -rf /tmp/%s.tar.gz' % dist)
+        # # and finally touch the .wsgi file so that mod_wsgi triggers
+        # # a reload of the application
+        # run('touch /var/www/yourapplication.wsgi')
+
+@task(default=True)
+def deploy_version(version='tip'):
+    env['version'] = version
+    __init()
+    export()
+    pack()
+    if not exists(env.srv_venv_path):
+        create_virtualenv()
+    deploy()
+    __clean()
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sbin/sync/settings.py	Tue Jan 06 13:26:14 2015 +0100
@@ -0,0 +1,8 @@
+from fabric.api import env
+
+
+# the user to use for the remote commands
+env.user = 'iri'
+# the servers where the commands are executed
+env.hosts = ['web.iri.centrepompidou.fr']
+env.srv_venv_path = '/iridata/virtualenv/catedit'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sbin/sync/settings.py.tmpl	Tue Jan 06 13:26:14 2015 +0100
@@ -0,0 +1,8 @@
+from fabric.api import env
+
+
+# the user to use for the remote commands
+env.user = 'user'
+# the servers where the commands are executed
+env.hosts = ['server']
+env.srv_venv_path = 'virtualenv folder path on host'
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/virtualenv/requirements_srvr.txt	Tue Jan 06 13:26:14 2015 +0100
@@ -0,0 +1,1 @@
+uWSGI==2.0.9