Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# Web 3 Final Project - Thor
*by Brian, Case, and Gabe*
## Initial Setup
1. Make sure you have Homestead on your machine.
2. `composer install`
3. Copy `.env.example` to `.env`
4. Run `php artisan key:generate`
5. Run `vagrant up`
6. Navigate to `http://192.168.10.10/` in your browser.
7. Start coding!
## Gulp Task - SCSS + JS
```
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`
## To access VM shell
1. Run `vagrant ssh`
2. Run `cd /home/vagrant/Code/thor`
3. Run your `php artisan` migrations and seeds.
4. To exit, run `exit`
(NOTE: All other `php artisan` commands can go in your regular console.)