Created
September 13, 2018 07:57
-
-
Save sravi4701/3ab162f3922af995e175391a32b16238 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from fabric import Connection, task | |
from invoke import Responder | |
from fabric.config import Config | |
PROJECT_NAME = "project_name" | |
PROJECT_PATH = "~/{}".format(PROJECT_NAME) | |
REPO_URL = "remote_repo_url" | |
def get_connection(ctx): | |
try: | |
with Connection(ctx.host, ctx.user, connect_kwargs=ctx.connect_kwargs) as conn: | |
return conn | |
except Exception as e: | |
return None | |
@task | |
def development(ctx): | |
ctx.user = "username" | |
ctx.host = "host" | |
ctx.connect_kwargs.key_filename = "full/ssh/key/path" | |
# check if file exists in directory(list) | |
def exists(file, dir): | |
return file in dir | |
# git tasks | |
@task | |
def pull(ctx, branch="dev"): | |
# check if ctx is Connection object or Context object | |
# if Connection object then calling method from program | |
# else calling directly from terminal | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
with conn.cd(PROJECT_PATH): | |
conn.run("git pull origin {}".format(branch)) | |
@task | |
def checkout(ctx, branch=None): | |
if branch is None: | |
sys.exit("branch name is not specified") | |
print("branch-name: {}".format(branch)) | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
with conn.cd(PROJECT_PATH): | |
conn.run("git checkout {branch}".format(branch=branch)) | |
@task | |
def clone(ctx): | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
ls_result = conn.run("ls").stdout | |
ls_result = ls_result.split("\n") | |
if exists(PROJECT_NAME, ls_result): | |
print("project already exists") | |
return | |
conn.run("git clone {} {}".format(REPO_URL, PROJECT_NAME)) | |
@task | |
def migrate(ctx): | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
with conn.cd(PROJECT_PATH): | |
conn.run("./venv/bin/python manage.py migrate") | |
# supervisor tasks | |
@task | |
def start(ctx): | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
conn.sudo("supervisorctl start all") | |
@task | |
def restart(ctx): | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
print("restarting supervisor...") | |
conn.sudo("supervisorctl restart all") | |
@task | |
def stop(ctx): | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
conn.sudo("supervisorctl stop all") | |
@task | |
def status(ctx): | |
if isinstance(ctx, Connection): | |
conn = ctx | |
else: | |
conn = get_connection(ctx) | |
conn.sudo("supervisorctl status") | |
# deploy task | |
@task | |
def deploy(ctx): | |
conn = get_connection(ctx) | |
if conn is None: | |
sys.exit("Failed to get connection") | |
clone(conn) | |
with conn.cd(PROJECT_PATH): | |
print("checkout to dev branch...") | |
checkout(conn, branch="dev") | |
print("pulling latest code from dev branch...") | |
pull(conn) | |
print("migrating database....") | |
migrate(conn) | |
print("restarting the supervisor...") | |
restart(conn) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment