Skip to content

Instantly share code, notes, and snippets.

@ucan-lab
Last active February 6, 2019 13:13
Show Gist options
  • Save ucan-lab/f72b04b3ed508204a197af20bfab2ced to your computer and use it in GitHub Desktop.
Save ucan-lab/f72b04b3ed508204a197af20bfab2ced to your computer and use it in GitHub Desktop.
Laravelの開発環境をVagrantを使って構築する ref: https://qiita.com/ucan-lab/items/e4a268e9f227ed6294b4
git clone https://github.com/ucan-lab/vagrant-laravel5
cd vagrant-laravel5
cp Vagrantfile.example Vagrantfile
vagrant up
alias ll='ls -lh --time-style=long-iso'
alias la='ls -alh --time-style=long-iso'
alias art='php artisan'
alias serve='php artisan serve --host 0.0.0.0'
alias migrate='php artisan migrate'
alias rollback='php artisan migrate:rollback'
alias fresh='php artisan migrate:fresh'
alias tinker='php artisan tinker'
alias relogin='exec $SHELL -l'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment