Files
igny8/cmd/logs.sh
alorig 88fea41e9f df
2025-11-09 23:17:51 +05:00

15 lines
278 B
Bash

#!/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