From 143c8e351c6f6269301f947233d2f7d434a3a6f3 Mon Sep 17 00:00:00 2001 From: myrmidex Date: Mon, 17 Aug 2026 00:50:06 +0200 Subject: [PATCH] Remove stale root-level build/update scripts (#40) --- build_and_push.sh | 3 --- update.sh | 18 ------------------ 2 files changed, 21 deletions(-) delete mode 100755 build_and_push.sh delete mode 100755 update.sh diff --git a/build_and_push.sh b/build_and_push.sh deleted file mode 100755 index b3ce7d4..0000000 --- a/build_and_push.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -docker build -t 192.168.178.152:50114/dishplanner-backend . -docker push 192.168.178.152:50114/dishplanner-backend diff --git a/update.sh b/update.sh deleted file mode 100755 index 7320639..0000000 --- a/update.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -set -e - -echo "๐Ÿ”„ Pulling latest backend changes..." -git pull origin main - -echo "๐Ÿ“ฆ Installing PHP dependencies..." -composer install --no-interaction --prefer-dist --optimize-autoloader - -echo "๐Ÿ—„๏ธ Running migrations..." -php artisan migrate --force - -echo "๐Ÿงน Clearing and caching config..." -php artisan config:cache -php artisan route:cache -php artisan view:cache - -echo "โœ… Backend update complete!"