runtime redis
1 changed file +2 −1
modified
mld/config.py
+2 −1
@@ -63,6 +63,7 @@ RUNTIME_CHECKS = { | ||
| 63 | 63 | "python@3.12": "test -x /opt/homebrew/opt/python@3.12/bin/python3.12", |
| 64 | 64 | "uv": "test -x /opt/homebrew/bin/uv || test -x $HOME/.local/bin/uv", |
| 65 | 65 | "uv-python@3.12": "ls -d $HOME/.local/share/uv/python/cpython-3.12* >/dev/null 2>&1", |
| 66 | + "redis": "test -x /opt/homebrew/bin/redis-server && redis-cli ping >/dev/null 2>&1", | |
| 66 | 67 | "docker": "test -x /opt/homebrew/bin/docker", |
| 67 | 68 | "postgresql@17": "test -x /opt/homebrew/opt/postgresql@17/bin/postgres", |
| 68 | 69 | "brew": "test -x /opt/homebrew/bin/brew", |
@@ -70,7 +71,7 @@ RUNTIME_CHECKS = { | ||
| 70 | 71 | } |
| 71 | 72 | BREW_FORMULAE = { |
| 72 | 73 | "node": "node", "pnpm": "pnpm", "pm2": "pm2", "python@3.14": "python@3.14", "python@3.13": "python@3.13", |
| 73 | − "python@3.12": "python@3.12", "uv": "uv", "docker": "docker", "postgresql@17": "postgresql@17", "git": "git", | |
| 74 | + "python@3.12": "python@3.12", "uv": "uv", "redis": "redis", "docker": "docker", "postgresql@17": "postgresql@17", "git": "git", | |
| 74 | 75 | } |
| 75 | 76 | BREW_CASKS = {"ngrok": "ngrok"} |
| 76 | 77 | |
| 77 | 78 | |