SPB Git forge
29commits 1branches 0releases
684.0 KBsize
maindefault branch
3 days agolast push
Python 95.8% Shell 4.2%

runtime redis

Simon-Pierre Boucher committed 19 days ago (Sep 4, 2026) parent 0a4f0dd

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