fix confs etc

This commit is contained in:
Andras Bacsai
2024-12-10 10:46:05 +01:00
parent 854fd3eab2
commit 3893754a10
15 changed files with 99 additions and 28 deletions

View File

@@ -1,5 +1,22 @@
#!/command/execlineb -P
foreground { composer -d /var/www/html/ install }
foreground { php /var/www/html/artisan migrate --step }
foreground { php /var/www/html/artisan dev --init }
# Use with-contenv to ensure environment variables are available
with-contenv
cd /var/www/html
foreground {
composer
install
}
foreground {
php
artisan
migrate
--step
}
foreground {
php
artisan
dev
--init
}