├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .dockerignore ├── .github ├── ct.yml ├── dependabot.yml ├── helm-docs.sh ├── kubeval.sh └── workflows │ ├── chart-test.yml │ ├── dependency-checks.yml │ └── docker-publish.yml ├── .gitignore ├── .s2i └── bin │ └── assemble ├── .snyk ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── bin ├── bcrypt-password.js ├── healthcheck.js └── redis-commander.js ├── config ├── custom-environment-variables.json └── default.json ├── dist ├── debian │ └── init.d │ │ └── redis-commander ├── pm2 │ ├── pm2-config.json.template │ └── readme.md └── systemd │ ├── readme.md │ └── redis-commander.service ├── docker-compose.yml ├── docker ├── entrypoint.sh ├── harden.sh └── replace-var-filter.jq ├── docs ├── GUI_EXAMPLE.png ├── adding_datatypes.md ├── configuration.md ├── connections.md └── security_checks.md ├── ecosystem.config.js ├── k8s ├── helm-chart │ ├── README.md │ ├── example-values-as-json.yaml │ ├── example-values-as-yml.yaml │ ├── redis-commander │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── README.md.gotmpl │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _capabilities.tpl │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ ├── ingress-legacy.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ ├── tests │ │ │ │ └── test-connection.yaml │ │ │ └── virtual-service.yaml │ │ ├── values.schema.json │ │ └── values.yaml │ └── release_charts ├── redis-commander │ ├── deployment-password-protected-redis.yaml │ ├── deployment.yaml │ ├── ingress.yml │ └── service.yaml └── redis │ ├── deployment-with-password.yaml │ ├── deployment.yaml │ └── service.yaml ├── lib ├── app.js ├── connections.js ├── express │ └── middlewares.js ├── ioredis-stream.js ├── redisCommands │ └── redisCore.js ├── routes │ ├── apiv1.js │ ├── home.js │ ├── index.js │ └── tools.js └── util.js ├── package.json ├── sbom.json ├── test └── testUtil.js └── web ├── static ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ └── default.css ├── favicon.png ├── healthcheck ├── images │ ├── RedisCommandLogo.png │ ├── icon-download.png │ ├── icon-edit.png │ ├── icon-info.png │ ├── icon-plus.png │ ├── icon-refresh.png │ ├── icon-trash.png │ ├── treeBinary.png │ ├── treeHash.png │ ├── treeJson.png │ ├── treeList.png │ ├── treeRoot.png │ ├── treeRootDisconnect.png │ ├── treeSet.png │ ├── treeStream.png │ ├── treeString.png │ └── treeZSet.png ├── scripts │ ├── binaryView.js │ ├── browserify.js │ ├── jquery-2.2.4.js │ ├── jquery.resize.min.js │ └── redisCommander.js └── templates │ ├── connectionsBar.ejs │ ├── detectRedisDb.ejs │ ├── editBinary.ejs │ ├── editBranch.ejs │ ├── editHash.ejs │ ├── editList.ejs │ ├── editReJSON.ejs │ ├── editSet.ejs │ ├── editStream.ejs │ ├── editString.ejs │ ├── editZSet.ejs │ └── serverInfo.ejs └── views ├── home ├── home-sso.ejs └── home.ejs ├── layout.ejs ├── modals ├── addHashFieldModal.ejs ├── addKeyModal.ejs ├── addListValueModal.ejs ├── addSetMemberModal.ejs ├── addXSetMemberModal.ejs ├── addZSetMemberModal.ejs ├── editHashFieldModal.ejs ├── editListValueModal.ejs ├── editSetMemberModal.ejs ├── editZSetMemberModal.ejs ├── renameKeyModal.ejs └── signinModal.ejs └── tools ├── exportData.ejs └── importData.ejs /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/ct.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/helm-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/helm-docs.sh -------------------------------------------------------------------------------- /.github/kubeval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/kubeval.sh -------------------------------------------------------------------------------- /.github/workflows/chart-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/workflows/chart-test.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/workflows/dependency-checks.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.s2i/bin/assemble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.s2i/bin/assemble -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/.snyk -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/bcrypt-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/bin/bcrypt-password.js -------------------------------------------------------------------------------- /bin/healthcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/bin/healthcheck.js -------------------------------------------------------------------------------- /bin/redis-commander.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/bin/redis-commander.js -------------------------------------------------------------------------------- /config/custom-environment-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/config/custom-environment-variables.json -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/config/default.json -------------------------------------------------------------------------------- /dist/debian/init.d/redis-commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/dist/debian/init.d/redis-commander -------------------------------------------------------------------------------- /dist/pm2/pm2-config.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/dist/pm2/pm2-config.json.template -------------------------------------------------------------------------------- /dist/pm2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/dist/pm2/readme.md -------------------------------------------------------------------------------- /dist/systemd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/dist/systemd/readme.md -------------------------------------------------------------------------------- /dist/systemd/redis-commander.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/dist/systemd/redis-commander.service -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/harden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docker/harden.sh -------------------------------------------------------------------------------- /docker/replace-var-filter.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docker/replace-var-filter.jq -------------------------------------------------------------------------------- /docs/GUI_EXAMPLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docs/GUI_EXAMPLE.png -------------------------------------------------------------------------------- /docs/adding_datatypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docs/adding_datatypes.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docs/connections.md -------------------------------------------------------------------------------- /docs/security_checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/docs/security_checks.md -------------------------------------------------------------------------------- /ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/ecosystem.config.js -------------------------------------------------------------------------------- /k8s/helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/README.md -------------------------------------------------------------------------------- /k8s/helm-chart/example-values-as-json.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/example-values-as-json.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/example-values-as-yml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/example-values-as-yml.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/.helmignore -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/README.md -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/README.md.gotmpl -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/NOTES.txt -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/_capabilities.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/_capabilities.tpl -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/configmap.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/deployment.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/hpa.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/ingress-legacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/ingress-legacy.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/ingress.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/service.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/templates/virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/templates/virtual-service.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/values.schema.json -------------------------------------------------------------------------------- /k8s/helm-chart/redis-commander/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/redis-commander/values.yaml -------------------------------------------------------------------------------- /k8s/helm-chart/release_charts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/helm-chart/release_charts -------------------------------------------------------------------------------- /k8s/redis-commander/deployment-password-protected-redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis-commander/deployment-password-protected-redis.yaml -------------------------------------------------------------------------------- /k8s/redis-commander/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis-commander/deployment.yaml -------------------------------------------------------------------------------- /k8s/redis-commander/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis-commander/ingress.yml -------------------------------------------------------------------------------- /k8s/redis-commander/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis-commander/service.yaml -------------------------------------------------------------------------------- /k8s/redis/deployment-with-password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis/deployment-with-password.yaml -------------------------------------------------------------------------------- /k8s/redis/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis/deployment.yaml -------------------------------------------------------------------------------- /k8s/redis/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/k8s/redis/service.yaml -------------------------------------------------------------------------------- /lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/app.js -------------------------------------------------------------------------------- /lib/connections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/connections.js -------------------------------------------------------------------------------- /lib/express/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/express/middlewares.js -------------------------------------------------------------------------------- /lib/ioredis-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/ioredis-stream.js -------------------------------------------------------------------------------- /lib/redisCommands/redisCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/redisCommands/redisCore.js -------------------------------------------------------------------------------- /lib/routes/apiv1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/routes/apiv1.js -------------------------------------------------------------------------------- /lib/routes/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/routes/home.js -------------------------------------------------------------------------------- /lib/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/routes/index.js -------------------------------------------------------------------------------- /lib/routes/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/routes/tools.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/package.json -------------------------------------------------------------------------------- /sbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/sbom.json -------------------------------------------------------------------------------- /test/testUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/test/testUtil.js -------------------------------------------------------------------------------- /web/static/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /web/static/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /web/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /web/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /web/static/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /web/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /web/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/css/default.css -------------------------------------------------------------------------------- /web/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/favicon.png -------------------------------------------------------------------------------- /web/static/healthcheck: -------------------------------------------------------------------------------- 1 | ok 2 | -------------------------------------------------------------------------------- /web/static/images/RedisCommandLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/RedisCommandLogo.png -------------------------------------------------------------------------------- /web/static/images/icon-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/icon-download.png -------------------------------------------------------------------------------- /web/static/images/icon-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/icon-edit.png -------------------------------------------------------------------------------- /web/static/images/icon-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/icon-info.png -------------------------------------------------------------------------------- /web/static/images/icon-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/icon-plus.png -------------------------------------------------------------------------------- /web/static/images/icon-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/icon-refresh.png -------------------------------------------------------------------------------- /web/static/images/icon-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/icon-trash.png -------------------------------------------------------------------------------- /web/static/images/treeBinary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeBinary.png -------------------------------------------------------------------------------- /web/static/images/treeHash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeHash.png -------------------------------------------------------------------------------- /web/static/images/treeJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeJson.png -------------------------------------------------------------------------------- /web/static/images/treeList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeList.png -------------------------------------------------------------------------------- /web/static/images/treeRoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeRoot.png -------------------------------------------------------------------------------- /web/static/images/treeRootDisconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeRootDisconnect.png -------------------------------------------------------------------------------- /web/static/images/treeSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeSet.png -------------------------------------------------------------------------------- /web/static/images/treeStream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeStream.png -------------------------------------------------------------------------------- /web/static/images/treeString.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeString.png -------------------------------------------------------------------------------- /web/static/images/treeZSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/images/treeZSet.png -------------------------------------------------------------------------------- /web/static/scripts/binaryView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/scripts/binaryView.js -------------------------------------------------------------------------------- /web/static/scripts/browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/scripts/browserify.js -------------------------------------------------------------------------------- /web/static/scripts/jquery-2.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/scripts/jquery-2.2.4.js -------------------------------------------------------------------------------- /web/static/scripts/jquery.resize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/scripts/jquery.resize.min.js -------------------------------------------------------------------------------- /web/static/scripts/redisCommander.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/scripts/redisCommander.js -------------------------------------------------------------------------------- /web/static/templates/connectionsBar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/connectionsBar.ejs -------------------------------------------------------------------------------- /web/static/templates/detectRedisDb.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/detectRedisDb.ejs -------------------------------------------------------------------------------- /web/static/templates/editBinary.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editBinary.ejs -------------------------------------------------------------------------------- /web/static/templates/editBranch.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editBranch.ejs -------------------------------------------------------------------------------- /web/static/templates/editHash.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editHash.ejs -------------------------------------------------------------------------------- /web/static/templates/editList.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editList.ejs -------------------------------------------------------------------------------- /web/static/templates/editReJSON.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editReJSON.ejs -------------------------------------------------------------------------------- /web/static/templates/editSet.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editSet.ejs -------------------------------------------------------------------------------- /web/static/templates/editStream.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editStream.ejs -------------------------------------------------------------------------------- /web/static/templates/editString.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editString.ejs -------------------------------------------------------------------------------- /web/static/templates/editZSet.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/editZSet.ejs -------------------------------------------------------------------------------- /web/static/templates/serverInfo.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/static/templates/serverInfo.ejs -------------------------------------------------------------------------------- /web/views/home/home-sso.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/home/home-sso.ejs -------------------------------------------------------------------------------- /web/views/home/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/home/home.ejs -------------------------------------------------------------------------------- /web/views/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/layout.ejs -------------------------------------------------------------------------------- /web/views/modals/addHashFieldModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/addHashFieldModal.ejs -------------------------------------------------------------------------------- /web/views/modals/addKeyModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/addKeyModal.ejs -------------------------------------------------------------------------------- /web/views/modals/addListValueModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/addListValueModal.ejs -------------------------------------------------------------------------------- /web/views/modals/addSetMemberModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/addSetMemberModal.ejs -------------------------------------------------------------------------------- /web/views/modals/addXSetMemberModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/addXSetMemberModal.ejs -------------------------------------------------------------------------------- /web/views/modals/addZSetMemberModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/addZSetMemberModal.ejs -------------------------------------------------------------------------------- /web/views/modals/editHashFieldModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/editHashFieldModal.ejs -------------------------------------------------------------------------------- /web/views/modals/editListValueModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/editListValueModal.ejs -------------------------------------------------------------------------------- /web/views/modals/editSetMemberModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/editSetMemberModal.ejs -------------------------------------------------------------------------------- /web/views/modals/editZSetMemberModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/editZSetMemberModal.ejs -------------------------------------------------------------------------------- /web/views/modals/renameKeyModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/renameKeyModal.ejs -------------------------------------------------------------------------------- /web/views/modals/signinModal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/modals/signinModal.ejs -------------------------------------------------------------------------------- /web/views/tools/exportData.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/tools/exportData.ejs -------------------------------------------------------------------------------- /web/views/tools/importData.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeferner/redis-commander/HEAD/web/views/tools/importData.ejs --------------------------------------------------------------------------------