Opensource and free.
I played around with Redis and was looking for a nice simple GUI I started this as a weekend project on Sept, 13 2019.. and posted it on the r/python "what's everyone working on this week" . I made a short "development diary" about the progress .. here.
It began and is a simple UI for Redis intended to be runniong locally. Tornado Webserver is included so simply start it and connect to localhost:8080.
clone the github repo
[Optional but recommended: Create a virtualenv]
pip install -r requirements.txtpython server.py with autocomplete and auto helpOn the way to dockerize redmonty. Docker version already starting and working...
FROM python:3.7
EXPOSE 8080
RUN mkdir -p /usr/local/redmonty
WORKDIR /usr/local/redmonty
COPY requirements.txt /usr/local/redmonty/
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD python3 /usr/local/redmonty/server.py
version: '3'
services:
redmonty:
build: .
ports:
- "8080:8080"
volumes:
- /home/khz/db:/usr/local/redmonty/db
environment:
- PYTHONPATH=/usr/local
redis:
image: "redis:alpine"
GitHub Repo: https://github.com/pythononwheels/redmonty
Comments, ideas, help very appreciated. Just tweet to @pythononwheels .. or create an issue, PR etc on the gitHub repo..