未知
项目描述
rehab是一个非常简单的工具,它只在给定文件自上次运行以来已更改时运行一组命令
安装
仅
pip install rehab
配置
创建配置文件
# basic rehab configuration, default values will be pretty similar EXAMPLE_CONFIG = { # where your repositories will checkout to 'repodir': '/var/repos/', # list of repositories: type, name and other params 'repositories': [ ['git', 'git@github.com:kvbik/rehab.git', 'master'], ], # run commands for each file which has changed since the last run 'updatehooks': { 'git@github.com:kvbik/rehab.git': [ ['requirements.txt', 'pip install -r requirements.txt'], ['requirements.txt', 'python setup.py develop'], ['setup.py', 'python setup.py develop'], ], }, } import yaml with open('/etc/my-rehab.yml', 'w') as f: f.write(yaml.dump(EXAMPLE_CONFIG))
并调用
rehab update -c /etc/my-rehab.yml -d /var/my-rehab.yml
项目详情
关闭
rehab-0.1.tar.gz的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 4466325f924733704a01611e030e1314d0c674784c8193a4a59f8922e8538111 |
|
MD5 | 442b449067dfb4da71aeb7bf769f2a83 |
|
BLAKE2b-256 | a6a2021b318430055f1f3301cac9899fac907294e180b07e37edd49bf6be6d52 |