Added rest of files

This commit is contained in:
Shaun Collins
2026-03-04 16:35:15 +00:00
committed by shaun collins
parent 646041230b
commit 09c4bd02ff
160 changed files with 19001 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
app = $(if $(wildcard vendor/bin/sail), vendor/bin/sail, php)
lint:
$(app) pint
build:
npm run build
up:
$(app) up -d
down:
$(app) down
deploy:
git pull
$(app) artisan migrate --force
make seed
npm run build
install:
$(app) composer install
npm install
rollback:
$(app) artisan migrate:rollback
certs:
certbot --nginx -d acebjj.co.uk -d www.acebjj.co.uk
seed:
$(app) artisan db:seed --class=FaqSeed
$(app) artisan db:seed --class=BlogSeed