nothingworksinc / ticketbeast

Back to the lesson videos:
https://course.testdrivenlaravel.com/lessons
552 stars 11 forks source link

How about this installation manual? #41

Open sandervanhooft opened 7 years ago

sandervanhooft commented 7 years ago

Hi @adamwathan,

Just for completeness sake (and for whenever I'll need it again), here are the steps I used to install this repo:

  1. git clone https://github.com/nothingworksinc (and provide credentials if requested)
  2. composer install
  3. cp .env.example .env
  4. php artisan key:generate
  5. Try ./vendor/bin/phpunit --exclude-group "integration" and see if it works

This guide intentionally omits configuring valet or homestead.

Feel free to include it in the readme.md.

svenluijten commented 7 years ago

I think you missed out /ticketbeast.git in the first step 🙂

$ git clone git@github.com:nothingworksinc/ticketbeast.git
$ cd ticketbeast/
$ composer install
$ cp .env.example .env
$ php artisan key:generate
$ ./vendor/bin/phpunit