Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 558 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 558 Bytes

Install process

  1. Clone the repo

  2. Move to the recently created folder

$ cd folder
  1. Make your own environment settings
$ cp .env.example .env
  1. Set your database settings on the environment
$ vi .env
  1. Install and update composer packages
$ composer install
  1. Generate your artisan key
$ php artisan key:generate
  1. Run the migrations and the seed
$ php artisan migrate
$ php artisan db:seed --class=CategoriesTableSeeder
$ php artisan db:seed --class=CardsTableSeeder