to django_root_path (defaults to project_name/localsettings.py)
skip_collect_static (optional): if True, Django collectstatic command is not called
"""
+from subprocess import check_output
from os.path import abspath, dirname, exists, join
from django.utils.crypto import get_random_string
from fabric.api import *
def check_localsettings():
- if not files.exists('%(app_path)s/localsettings.py' % env):
- abort('localsettings.py file missing.')
+ return files.exists('%(app_path)s/localsettings.py' % env)
@task(default=True)
require('hosts', 'app_path')
import time
- env.release = time.strftime('%Y-%m-%dT%H%M')
+ env.release = '%s_%s' % (time.strftime('%Y-%m-%dT%H%M'), check_output(['git', 'rev-parse', 'HEAD']).strip())
setup()
- check_localsettings()
+ if not check_localsettings():
+ abort('Setup is complete, but\n %(app_path)s/localsettings.py\n'
+ 'is needed for actual deployment.' % env)
upload_tar_from_git()
copy_localsettings()
install_requirements()
@task
def restart():
- require('services')
- for service in env.services:
+ for service in env.services or ():
execute(service)
for service in env.services:
service.upload_sample()
-def upload_sample(name):
+def upload_sample(name, where="samples/"):
require('app_path', 'project_name')
- upload_path = '%(app_path)s/samples/' % env + name + '.sample'
+ upload_path = '%s/%s%s.sample' % (env['app_path'], where, name)
if files.exists(upload_path):
return
print '>>> upload %s template' % name
def upload_localsettings_sample():
"Fill out localsettings template and upload as a sample."
env.secret_key = get_random_string(50)
- upload_sample('localsettings.py')
+ upload_sample('localsettings.py', where="")
upload_nginx_sample = lambda: upload_sample('nginx')
path = '%(app_path)s/releases/%(release)s' % dict(app_path = env['app_path'], release = release)
if 'django_root_path' in env:
path = join(path, env['django_root_path'])
- return path
\ No newline at end of file
+ return path