├── .bumpversion.cfg ├── .cookiecutterrc ├── .coveragerc ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── github-actions.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .taplo.toml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── ci ├── bootstrap.py ├── requirements.txt └── templates │ └── .github │ └── workflows │ └── github-actions.yml ├── docs ├── authors.rst ├── changelist.png ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── inspect-big-string.jpg ├── inspect-binary-hash.jpg ├── inspect-binary-key.jpg ├── inspect-binary-string.jpg ├── inspect-db.jpg ├── inspect-hash.jpg ├── inspect-set.jpg ├── inspect-sorted-set.jpg ├── inspect.png ├── installation.rst ├── readme.rst ├── reference │ ├── index.rst │ └── redisboard.rst ├── requirements.txt ├── spelling_wordlist.txt └── usage.rst ├── pyproject.toml ├── pytest.ini ├── setup.py ├── src └── redisboard │ ├── __init__.py │ ├── __main__.py │ ├── admin.py │ ├── apps.py │ ├── cli.py │ ├── conf.py │ ├── connection.py │ ├── data.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_url.py │ ├── 0003_fill_url.py │ ├── 0004_cleanup.py │ ├── 0005_config.py │ └── __init__.py │ ├── models.py │ ├── static │ └── redisboard │ │ ├── admin.css │ │ └── favicon.ico │ ├── structs.py │ ├── templates │ ├── admin │ │ └── redisboard │ │ │ └── redisserver │ │ │ ├── change_form.html │ │ │ ├── change_list.html │ │ │ └── details_display.html │ └── redisboard │ │ ├── details.html │ │ ├── inspect.html │ │ └── inspect_key.html │ └── utils.py ├── tests ├── conftest.py ├── make_frail_data.py ├── make_test_data.py ├── test-data │ ├── bad253A250025012.html │ ├── my253Abig-str.html │ ├── my253Ahash.html │ ├── my253Aset.html │ └── my253Azset.html ├── test_project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── test_redisboard.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.cookiecutterrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.cookiecutterrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/.taplo.toml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/README.rst -------------------------------------------------------------------------------- /ci/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/ci/bootstrap.py -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- 1 | pip>=24.2 2 | setuptools>=69 3 | tox>=4 4 | -------------------------------------------------------------------------------- /ci/templates/.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/ci/templates/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/changelist.png -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/inspect-big-string.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-big-string.jpg -------------------------------------------------------------------------------- /docs/inspect-binary-hash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-binary-hash.jpg -------------------------------------------------------------------------------- /docs/inspect-binary-key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-binary-key.jpg -------------------------------------------------------------------------------- /docs/inspect-binary-string.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-binary-string.jpg -------------------------------------------------------------------------------- /docs/inspect-db.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-db.jpg -------------------------------------------------------------------------------- /docs/inspect-hash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-hash.jpg -------------------------------------------------------------------------------- /docs/inspect-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-set.jpg -------------------------------------------------------------------------------- /docs/inspect-sorted-set.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect-sorted-set.jpg -------------------------------------------------------------------------------- /docs/inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/inspect.png -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/redisboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/reference/redisboard.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=1.3 2 | furo 3 | -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/setup.py -------------------------------------------------------------------------------- /src/redisboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/__init__.py -------------------------------------------------------------------------------- /src/redisboard/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/__main__.py -------------------------------------------------------------------------------- /src/redisboard/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/admin.py -------------------------------------------------------------------------------- /src/redisboard/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/apps.py -------------------------------------------------------------------------------- /src/redisboard/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/cli.py -------------------------------------------------------------------------------- /src/redisboard/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redisboard/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/connection.py -------------------------------------------------------------------------------- /src/redisboard/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/data.py -------------------------------------------------------------------------------- /src/redisboard/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/redisboard/migrations/0002_add_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/migrations/0002_add_url.py -------------------------------------------------------------------------------- /src/redisboard/migrations/0003_fill_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/migrations/0003_fill_url.py -------------------------------------------------------------------------------- /src/redisboard/migrations/0004_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/migrations/0004_cleanup.py -------------------------------------------------------------------------------- /src/redisboard/migrations/0005_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/migrations/0005_config.py -------------------------------------------------------------------------------- /src/redisboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redisboard/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/models.py -------------------------------------------------------------------------------- /src/redisboard/static/redisboard/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/static/redisboard/admin.css -------------------------------------------------------------------------------- /src/redisboard/static/redisboard/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/static/redisboard/favicon.ico -------------------------------------------------------------------------------- /src/redisboard/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/structs.py -------------------------------------------------------------------------------- /src/redisboard/templates/admin/redisboard/redisserver/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/templates/admin/redisboard/redisserver/change_form.html -------------------------------------------------------------------------------- /src/redisboard/templates/admin/redisboard/redisserver/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/templates/admin/redisboard/redisserver/change_list.html -------------------------------------------------------------------------------- /src/redisboard/templates/admin/redisboard/redisserver/details_display.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redisboard/templates/redisboard/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/templates/redisboard/details.html -------------------------------------------------------------------------------- /src/redisboard/templates/redisboard/inspect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/templates/redisboard/inspect.html -------------------------------------------------------------------------------- /src/redisboard/templates/redisboard/inspect_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/templates/redisboard/inspect_key.html -------------------------------------------------------------------------------- /src/redisboard/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/src/redisboard/utils.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/make_frail_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/make_frail_data.py -------------------------------------------------------------------------------- /tests/make_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/make_test_data.py -------------------------------------------------------------------------------- /tests/test-data/bad253A250025012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test-data/bad253A250025012.html -------------------------------------------------------------------------------- /tests/test-data/my253Abig-str.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test-data/my253Abig-str.html -------------------------------------------------------------------------------- /tests/test-data/my253Ahash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test-data/my253Ahash.html -------------------------------------------------------------------------------- /tests/test-data/my253Aset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test-data/my253Aset.html -------------------------------------------------------------------------------- /tests/test-data/my253Azset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test-data/my253Azset.html -------------------------------------------------------------------------------- /tests/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test_project/settings.py -------------------------------------------------------------------------------- /tests/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test_project/urls.py -------------------------------------------------------------------------------- /tests/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test_project/wsgi.py -------------------------------------------------------------------------------- /tests/test_redisboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tests/test_redisboard.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-redisboard/HEAD/tox.ini --------------------------------------------------------------------------------