forked from aslan/applicant-site
60 lines
977 B
Makefile
60 lines
977 B
Makefile
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
|
|
make ide-helper
|
|
|
|
setup-test:
|
|
composer install
|
|
cp -n .env.example .env
|
|
php artisan key:gen --ansi
|
|
touch database/database.sqlite
|
|
php artisan migrate
|
|
php artisan db:seed
|
|
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
|
|
|
|
ide-helper:
|
|
php artisan ide-helper:eloquent
|
|
php artisan ide-helper:gen
|
|
php artisan ide-helper:meta
|
|
php artisan ide-helper:mod -n
|