From 72ef276f8da65806de975344dc5b7107eba102ce Mon Sep 17 00:00:00 2001 From: alorig <220087330+alorig@users.noreply.github.com> Date: Sun, 9 Nov 2025 20:15:39 +0500 Subject: [PATCH] scripts --- logs.sh | 14 ++++++++++++++ check-status.sh => st.sh | 0 2 files changed, 14 insertions(+) create mode 100644 logs.sh rename check-status.sh => st.sh (100%) mode change 100755 => 100644 diff --git a/logs.sh b/logs.sh new file mode 100644 index 00000000..5cd37143 --- /dev/null +++ b/logs.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# Quick log check - last 50 lines + +echo "=== Backend Logs ===" +docker logs igny8_backend --tail 50 + +echo "" +echo "=== Celery Worker Logs ===" +docker logs igny8_celery_worker --tail 50 + +echo "" +echo "=== Celery Beat Logs ===" +docker logs igny8_celery_beat --tail 50 + diff --git a/check-status.sh b/st.sh old mode 100755 new mode 100644 similarity index 100% rename from check-status.sh rename to st.sh