Added rest of files
This commit is contained in:
committed by
shaun collins
parent
646041230b
commit
09c4bd02ff
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user