The ad hoc continuous deployment solution for developers
Project description
CPLOY
The ad hoc continuous deployment solution for developers
I sometimes have to code stuff that needs to be run on remote hosts. Since I don’t have all my prefs/settings/dotfiles/etc on the remote, I usually code on local and have a small one-liner lying around that allows me to quickly deploy the code (with scp or similar) and run some command on the other side (with ssh for example). This is not optimal and that’s the reason I created cploy.
Cploy allows to mirror changes performed on a local directory to a remote host through SSH. A specific command (bash oneliner for example) can be run after any change for example to trigger a build.
Features:
handle multiple syncs in parallel
sync is done through SSH
can be daemonized
allows to provide a specific command to run on each local change
allows to exclude some files from sync
Quick start:
# install cploy
sudo pip3 install cploy
# start the daemon
cploy daemon start
# add a directory to sync
cploy sync /tmp/local someuser@somehost /tmp/remote
see usage for more info
Table of Contents
Installation
To install run:
$ sudo pip3 install cploy
Or from github directly
$ cd /tmp; git clone https://github.com/deadc0de6/cploy && cd cploy
$ sudo python3 setup.py install
$ cploy --help
To work with cploy without installing it, you can do the following
$ cd /tmp; git clone https://github.com/deadc0de6/cploy && cd cploy
$ sudo pip3 install -r requirements.txt
$ python3 -m cploy.cploy --help
or install it in a virtualenv
$ cd /tmp; git clone https://github.com/deadc0de6/cploy && cd cploy
$ virtualenv -p python3 env
$ source env/bin/activate
$ python setup.py install
$ cploy --help
Usage
The usual way of using cploy is by starting the daemon and adding tasks to it (directories to sync between local and a remote host).
Start the daemon
$ cploy daemon start --debug
and then add tasks to it:
# sync dir /tmp/local on localhost to
# /tmp/remote on host somehost
$ cploy sync /tmp/local/ somehost /tmp/remote
Usage:
cploy
Usage:
cploy sync [-dfF] [-p <port>] [-u <user>] [-P <pass>]
[-k <key>] [-K <pass>] [-c <cmd>] [-e <pattern>...]
<local_path> <hostname> <remote_path>
cploy daemon [-d] (start | stop | restart)
cploy daemon [-d] (info | ping | debug)
cploy daemon unsync <id>
cploy daemon resync <id>
cploy --help
cploy --version
Options:
-p --port=<port> SSH port to use [default: 22].
-u --user=<user> username for SSH [default: drits].
-k --key=<key> Path of SSH private key to use.
-P --pass=<pass> SSH password to use.
-K --keypass=<pass> SSH private key passphrase.
-e --exclude=<pattern> Pattern to exclude using fnmatch.
-c --command=<cmd> Command to execute on changes.
-F --front Do not daemonize.
-f --force Force overwrite on remote [default: False].
-d --debug Enable debug [default: False].
-v --version Show version.
-h --help Show this screen.
Remote host
Connections to a remote hosts is done using SFTP (SSH). Multiple options can be changed: connection with password, with SSH keys, using the SSH agent, different port, different username, etc.
Besides using the above options, The ** argument can also be provided using a format similar to what the SSH client provides: @:.
Talking with the daemon
A few commands are available to talk to the daemon:
start: start the daemon
stop: stop the daemon
restart: stop and then start the daemon
info: get a list of current tasks
ping: ping the daemon
debug: toggle debug flag
unsync: stop syncing a specific task
resync: do a full sync starting from local of the sync’ed directory
If you prefer not to use the daemon, it can also be run in the foreground by using the --front switch.
Excluding
Files can be excluded within the monitored directory by using --exclude. Matching is done using fnmatch.
Exclude any hidden files:
--exclude '*/.*'
Exclude any files containing test
--exclude '*/test*'
Issues and bugs
This hasn’t been extensively tested so please do report any bug you find. Starting the daemon with --debug is always helpful to get more info (or toggle it with the daemon command debug).
Contribution
If you are having trouble installing or using cploy, open an issue.
If you want to contribute, feel free to do a PR (please follow PEP8).
Have a look at the design directory.
License
This project is licensed under the terms of the GPLv3 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cploy-0.1.tar.gz
.
File metadata
- Download URL: cploy-0.1.tar.gz
- Upload date:
- Size: 25.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e2e1c83dd3892f747c3e94ce8a44f3197afb5d1db2c3096ea35faeaa0ad83f7 |
|
MD5 | b94c2b00f1c5f321c3d05f05eb63ee7a |
|
BLAKE2b-256 | 6b37653d633740f82537c63e279fbe4b6e7840b7a401c8d0bf8c6884f646da32 |
File details
Details for the file cploy-0.1-py3-none-any.whl
.
File metadata
- Download URL: cploy-0.1-py3-none-any.whl
- Upload date:
- Size: 32.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fb5b762b754434a3439650a20d013f071c4844008b4e81b78956a8f1b9141c8 |
|
MD5 | 3e49afab0ef45638ba8199833d89b10a |
|
BLAKE2b-256 | 7144828eee360a9873c08c4d32e03117749b38e7db8df5ae4d25b94efa226bb8 |