惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
H
Hacker News: Front Page
P
Palo Alto Networks Blog
T
ThreatConnect
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
T
True Tiger Recordings
P
Privacy & Cybersecurity Law Blog
B
Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
C
Comments on: Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
N
News and Events Feed by Topic
NISL@THU
NISL@THU
腾讯CDC
雷峰网
雷峰网
Security Latest
Security Latest
李成银的技术随笔
M
Microsoft Research Blog - Microsoft Research
L
LangChain Blog
L
Lohrmann on Cybersecurity
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
C
Check Point Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
博客园 - Franky
N
News | PayPal Newsroom
V
V2EX
A
About on SuperTechFans
The Register - Security
The Register - Security
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google Online Security Blog
Google Online Security Blog
MyScale Blog
MyScale Blog
Cisco Talos Blog
Cisco Talos Blog
Vercel News
Vercel News
WordPress大学
WordPress大学
C
Cyber Attacks, Cyber Crime and Cyber Security
The Hacker News
The Hacker News
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
爱范儿
爱范儿
A
Arctic Wolf
L
LINUX DO - 最新话题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

博客园 - 福娃

Ubuntu 16.04 LTS更新 程序员如何走出迷茫的困境? PHP vs Python Apache2.4中开通HTTP基本认证 NPM 与 left-pad 事件:我们是不是早已忘记该如何好好地编程? Groovy split竖杆注意 使用Flask-Migrate进行管理数据库升级 程序员的复仇:11行代码如何让Node.js社区鸡飞狗跳 CAS认证原理图 grails 私有库相关设置 A successful Git branching model String to Date 多种格式转换 IBatis.Net如何支持多个数据库 [django]the story about Django and TurboGears [django]newforms两种方式示例 Since NHibernate 1.2.0, objects are lazy by default - 福娃 [Castle]Castle.Model被Castle.Core代替了 [Castle]Castle也范型 - 福娃 - 博客园 [Castle]Asp.Net中获取Castle容器中的服务的另一方法
Fabric自动部署太方便了
福娃 · 2016-04-03 · via 博客园 - 福娃

之前不知道有Fabric工具,每次发布程序到服务器上的时候,基本流程:本地打包程序 -> Ftp上传 -> 停服务器Apache -> 覆盖文件 -> 启动Apache, 非常繁琐。

前几天无意发现了Fabric工具,研究了一下,现在我通过该工具发布程序只要一条指令即可:

fab pack deploy

具体如何实现的,请看实例,你只需要在你的程序跟目录下添加fabfile.py文件,内容参考如下:

#!/usr/bin/env python

from fabric.api import *

# Configure user, private key, etc. for SFTP deployment
env.user = 'root'
env.hosts = ['SERVER IP']


def pack():
    local('npm run build', capture=False)
    local('python setup.py sdist --formats=gztar', capture=False)

def deploy():
    dist = local('python setup.py --fullname', capture=True).strip()

    # clean up
    sudo('rm -rf /tmp/towerres /tmp/towerres.tar.gz')

    put('dist/%s.tar.gz' % dist, '/tmp/towerres.tar.gz')

    # stop apache
    run('apachectl stop')

    # remove priouse folder
    run('rm /home/maplye/httpd/towerresource/towerres -rf')
    run('rm /home/maplye/httpd/towerresource/migrations -rf')

    # copy
    run('mkdir /tmp/towerres')
    with cd('/tmp/towerres'):
        run('tar zxf /tmp/towerres.tar.gz')

        run('cp -rf /tmp/towerres/%s/towerres /home/maplye/httpd/towerresource/' % dist)
        run('cp -rf /tmp/towerres/%s/migrations /home/maplye/httpd/towerresource/' % dist)
    
    # run
    with cd('/home/maplye/httpd/towerresource'):
        run('chown -R apache:apache towerres')
        run('python manage.py db upgrade')

    # start apache
    run('apachectl start')

    # clean up
    sudo('rm -rf /tmp/towerres /tmp/towerres.tar.gz')

  具体参照官网: http://www.fabfile.org/

  中文文档: http://fabric-docs-cn.readthedocs.org/zh_CN/latest/