Download the PHP package sarfraznawaz2005/gitup without Composer
On this page you can find all versions of the php package sarfraznawaz2005/gitup. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sarfraznawaz2005/gitup
More information about sarfraznawaz2005/gitup
Files in sarfraznawaz2005/gitup
Package gitup
Short Description Laravel package to upload git commits to server(s) via (s)ftp.
License MIT
Informations about the package gitup
gitup
Laravel package to upload git commits to server(s) via (s)ftp.
DISCLAIMER
This package is not fully tested, use it at your own risk!
Screenshot
Why
We have multiple servers eg live, staging, testing, etc and client wanted us to upload task/story # X to staging only or story Y to live only that's when it was hard to track down files worked upon earlier and then upload them selectively; a time consuming process and nuisance so we created this package so that we can easily upload with one click selected stories to asked servers.
Requirements
- PHP >= 5.6
git
added to PATH envFTP
andZip
PHP extensions (both ship with PHP and usually turned on)league/flysystem
FTP wrapper used by gitUp. (comes with laravel by default)-
league/flysystem-sftp
Library used by gitUp to upload files via SFTP.Installation
Install via composer
For Laravel < 5.5:
Add Service Provider to
config/app.php
inproviders
section
Run
php artisan vendor:publish
to publish package's config and migration file. You should now haveconfig/gitup.php
file published. It will also publish migration file indatabase/migrations
folder.Run
php artisan migrate
to createcommits
table in your database.Check and update
config/gitup.php
file to setup config options including S(FTP) server information where you would like to upload.By default, gitup UI is available at
/gitup
route.How it Works
For selected commits, we extract files out of them and create zip archive along with an script to extract this zip archive. The zip archive and extract script are then uploaded to selected server where extract script extracts the uploaded zip archive. Once the upload process is done, both zip archive and extract script are deleted from the server.
Uploading zip archive along with extract script has huge speed benefits as all committed files get uploaded in one shot as opposed to uploading each committed file individually.
Similar Project
License
This code is published under the MIT License. This means you can do almost anything with it, as long as the copyright notice and the accompanying license file is left intact.