by Brian, Case, and Gabe
- Make sure you have Homestead on your machine.
composer install
- Copy
.env.example
to.env
- Run
php artisan key:generate
- Run
vagrant up
- Navigate to
http://192.168.10.10/
in your browser. - Start coding!
npm -v # verify that you have npm installed and in your path
npm install -g gulp
npm install
gulp
If you get errors, try installing laravel-elixir with npm install laravel-elixir --save-dev
To have it watch your stuff, use gulp watch
- Run
vagrant ssh
- Run
cd /home/vagrant/Code/thor
- Run your
php artisan
migrations and seeds. - To exit, run
exit
(NOTE: All otherphp artisan
commands can go in your regular console.)