Quick start

  1. Clone repository to your disk
git clone https://github.com/EvgenySmekalin/todomvc.git
  1. Change directory to todomvc and install composer dependencies
cd todomvc
composer install
  1. Create copy file .env.example and rename it to .env
cp .env.example .env
  1. Run command
php artisan key:generate
  1. Config database: change DB_* params in .env file
  2. Run migrations
php artisan migrate