Files
easyappointments/docker/php-fpm/start-container
xavor 8c4798a5fd
Some checks failed
CI / build-test (push) Has been cancelled
first commit
2025-05-31 18:56:37 +02:00

20 lines
414 B
Bash

#!/bin/bash
echo "➜ Ignore Permission Changes"
git config core.fileMode false
echo "➜ Set Correct Permissions"
chmod -R 777 storage
echo "➜ Install Composer Dependencies"
[[ -d vendor ]] || composer install
echo "➜ Install NPM Dependencies"
[[ -d node_modules ]] || npm install
echo "➜ Build Project Assets"
[[ -d assets/vendor ]] || npx gulp compile
echo "➜ Listen To Incoming Requests"
php-fpm