Justup is a deployment tool written in C.
Transfer protocols: FTP, SFTP
The project is created for simple sites, that usually don't use servers with SFTP, WebDAV or something like that, when there isn't any other way except use FTP.
# print list of prepared files for deploy
$ justup status
# execute deploy command, delete, add and modify files on remote server
$ justup push
$ justup push `file1` `file2`
# apply changes without sending to server
$ justup save
$ justup save `file1` `file2`
# create and switch between profiles; them like branches in git/svn
$ justup profile `master/dev/something_else`
You can find all configuration files in
.justup/
hidden folder. The file created automatically when you switch between profiles; master profile is default.
protocol = ftp # ftp/sftp
host = localhost # host/domain/ip of server
port = 21 # optional, if not set, so port choose automatically
user = user # user
pass = root123 # password
basedir = /var/www/site/ # path to project root hosted on remote server
No testing. No examples. Only clean hardcore code.
But it will be soon.
Thanks @benhoyt for small and helpful library inih which I use to parse configuration files.