Import L1 (celery) as l1/

This commit is contained in:
giles
2026-02-24 23:07:19 +00:00
225 changed files with 57298 additions and 0 deletions

12
l1/check_redis.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""Check Redis connectivity."""
import redis
try:
r = redis.Redis(host='localhost', port=6379, db=0)
r.ping()
print("Redis: OK")
except redis.ConnectionError:
print("Redis: Not running")
print("Start with: sudo systemctl start redis-server")