Dodanie generowania podstawowego pliku VirtualHost.
authorzuber <marek@stepniowski.com>
Mon, 12 Oct 2009 23:10:32 +0000 (01:10 +0200)
committerzuber <marek@stepniowski.com>
Mon, 12 Oct 2009 23:10:32 +0000 (01:10 +0200)
fabfile.py

index 8b55e58..826e7ed 100644 (file)
@@ -1,5 +1,6 @@
 from __future__ import with_statement # needed for python 2.5
 from fabric.api import *
+from fabric.contrib.files import upload_template
 
 import os
 
@@ -65,6 +66,7 @@ def deploy():
     upload_tar_from_git()
     upload_pybundle()
     install_requirements()
+    upload_wsgi_script_sample()
     symlink_current_release()
     migrate()
     restart_webserver()
@@ -134,6 +136,12 @@ def upload_pybundle():
         local('pip bundle requirements.pybundle %(pip_options)s -r requirements.txt' % env)
         put('requirements.pybundle', '%(path)s' % env)
 
+def upload_wsgi_script_sample():
+    "Create and upload a wsgi script sample"
+    print ">>> upload wsgi script sample"
+    print dict(env)
+    upload_template('%(project_name)s.wsgi.template' % env, '%(path)s/%(project_name)s.wsgi.sample' % env, context=env)
+
 def symlink_current_release():
     "Symlink our current release"
     print '>>> symlink current release'