Files
Laravel-boiler-plate/Makefile
T
Shaun Collins 52725fe2c4
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
linter / quality (push) Has been cancelled
Linted content and add sail plus lint
2026-02-23 16:02:12 +00:00

32 lines
403 B
Makefile

# Define the app variable based on the existence of vendor/bin/sail
app = $(if $(wildcard vendor/bin/sail), vendor/bin/sail, php)
lint:
$(app) pint
npm run lint
build:
npm run build
dev:
npm run dev
up:
$(app) up -d
down:
$(app) down
install:
$(app) composer install
npm install
migrate:
$(app) artisan migrate
rollback:
$(app) artisan migrate:rollback
tinker:
$(app) artisan tinker