.env $ composer install # must be tab indent $ npm install $ npm run development $ mysql -u root -e "CREATE DATABASE IF NOT EXISTS app;" $ php artisan key:generate $ php artisan migrate
will run setup .PHONY: setup setup: # this is the target cp .env.example .env # must be tab indent composer install # there are no PSRs here npm install php artisan key:generate php artisan migrate