- copy .env.example to .env and insert db credentials
- install dependencies with
composer install
- execute
php artisan migrate
to generate db-tables - (optional) execute
php artisan db:seed
to generate dummy data - run
npm install
andnpm run dev
to generate assets (css, js) - either use
php artisan serve
(easy) or apache/nginx to serve the application (not so easy, use google to setup the config)