mkdir docker-handson && cd docker-handson mkdir src laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "fuel/fuel", | |
"type": "metapackage", | |
"description": "The FuelPHP framework", | |
"keywords": ["framework"], | |
"homepage": "https://github.com/wantonbe/", | |
"license": "MIT", | |
"authors": [ | |
{ | |
"name": "FuelPHP Development Team", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.name "your name" | |
git config --global user.email "[email protected]" | |
git config --global color.status auto | |
git config --global color.diff auto | |
git config --global color.branch auto | |
git config --global color.interactive auto | |
git config --global color.grep auto | |
git config --global alias.co 'checkout' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.define "web" do |web| | |
web.vm.box = "CentOS-6.4-x86_64" | |
web.vm.box_url = "http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-x86_64-v20130427.box" | |
web.vm.network :private_network, ip: "172.16.1.200" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 特定のディレクトリを除外しつつ、ファイルを表示する | |
find . -type d \( -name '.git' -o -name '.gitkeep' \) -prune -o \( -type f -a -print \) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ PERL_CARTON_MIRROR=http://cpan.metacpan.org/,http://backpan.perl.org/ carton install |