start: php artisan serve start-frontend: npm run dev setup: composer install cp -n .env.example .env php artisan key:gen --ansi touch database/database.sqlite php artisan migrate:refresh php artisan db:seed npm ci npm run build setup-ci: composer install cp -n .env.example .env php artisan key:gen --ansi touch database/database.sqlite php artisan migrate:refresh php artisan db:seed npm ci npm run build setup-prod: /opt/php82/bin/php /usr/local/bin/composer install npm ci npm run build watch: npm run watch migrate: php artisan migrate console: php artisan tinker log: tail -f storage/logs/laravel.log test: php artisan test test-coverage: XDEBUG_MODE=coverage php artisan test --coverage-clover build/logs/clover.xml deploy: git push heroku lint: composer exec phpcs -- --standard=PSR12 app routes tests lint-fix: composer exec phpcbf -- --standard=PSR12 app routes tests db-prepare: php artisan migrate:refresh --force --seed start-app: php artisan serve --host 0.0.0.0 --port ${PORT}