Package Data | |
---|---|
Maintainer Username: | HiroKws |
Maintainer Contact: | hiro.soft@gmail.com (Hirohisa Kawase) |
Package Create Date: | 2013-10-25 |
Package Last Update: | 2013-11-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-15 15:17:54 |
Package Statistics | |
---|---|
Total Downloads: | 1,107 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Laravel 4 Arisan deploy command by using execute a command line tools (rsync, git, etc.).
This is beta version, not tested well yet.
php artisan syncle
Then deploy the project that installed this package by commands on a config setting .
You can change command name by setting favoret name to config file.
(But...in honesty...the best way is that just put same named shell script on each project root, and execute it when deploy the project. This is simpler and easiest to maintain... :D This package's main purpose is tutorial how to make command and shell script handling, error output and so on. If you use this Artisan command, you can see colorized message on some output. This is a beautiful benefit. :D )
Run :
composer require "hirokws/syncle:master-dev"
Or, add follwing code into require section of root composer.json file.
"hirokws/syncle" : "master-dev"
Then, add service provider into app/config/app.php.
'Syncle\SyncleServiceProvider',
Next, publish config file into your app/config/packages folder.
php artisan config:publish hirokws/syncle
Please open app/config/packages/hirokws/syncle/config.php.
And change setting as you like. Most deploy procedure may define in this config file.
php artisan syncle [--by|-b deploy-method] [--log|-l] [--message|-m commit-message] [--verbose [1|2|3]|-[v|vv|vvv]]
Deploy by 'default' setting :
php artisan syncle
Deploy by 'git' setting :
php artisan syncle --by git --message "Initial Commit"
php artisan syncle -b git -m "Initial Commit"
Of course, if you use git to deploy your project mainly, then set it as 'default'. If do so, execute command become shorter, because no needed to specify deploy method by '--by'.
If Ommited --message, DefaultGitMessage item on config file will be used. (If there is ':message' in DeployMethos.git command(s).)
Show transferred files list :
On Linux (maybe Mac also), rsync display transfering file names, and inhibited output them in normal mode. If you want to see all tranferred files, use verbose mode.
php artisan syncle -v
php artisan syncle -vv
php artisan syncle -vvv
php artisan syncle --verbose 1
php artisan syncle --verbose 2
php artisan syncle --verbose 3
Every above options, works as same. They showed transferred files list.
Log output:
If you want to log output, so use log option.
php artisan syncle --log
Why I made this. The reason is sometime I have confused 'How I deploy this project?'.
Mainly, I used rsync. When I push something to Github, so used git. For some shared hosting by FTP.
Normally I made upload bash alias for each project. But already too many to remember them. Oh I'm getting old...
This 10 days, I read/translated Laravel 4 Cookbook. And I got an idea to make a deploy command as Artisan CLI. If so, I just kick deploy command on an top of root folder. It's nice ! ( But...as I mentioned, the best way is just making simple same upload script on each project top folder..., I think. ;) )
And Yesterday, I had translated, and released Japanese version. Then started to development for myself.
Have you read this book? If not, read it. You may also get some ideas to improve your workflow. Not only knowledge of Laravel 4.
You can read those tutorials on Midium, but this is cheeper. I suggest that you get a copy.
To colorize output, please use --ansi option with artisan commands. I set an alias like alias artisan='artisan --ansi'
on .bashrc.
The whole under LIT license. ( My bad English also. :D ) ( Pretty bugs also. :D :D )