├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── images ├── demo.gif ├── demo.tape └── image_header.PNG ├── pyproject.toml ├── src └── dotenvhub │ ├── __init__.py │ ├── app.py │ ├── assets │ ├── modal_save.tcss │ ├── modal_shell.tcss │ └── tui.tcss │ ├── cli_parser.py │ ├── config.py │ ├── constants.py │ ├── tui.py │ ├── utils.py │ └── widgets │ ├── filepanel.py │ ├── interactionpanel.py │ ├── modals.py │ └── previewpanel.py ├── tests ├── app_tests │ ├── test_filepanel.py │ └── test_jumper_integration.py ├── conftest.py └── test_utils.py └── uv.lock /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/README.md -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/demo.tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/images/demo.tape -------------------------------------------------------------------------------- /images/image_header.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/images/image_header.PNG -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/dotenvhub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/__init__.py -------------------------------------------------------------------------------- /src/dotenvhub/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/app.py -------------------------------------------------------------------------------- /src/dotenvhub/assets/modal_save.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/assets/modal_save.tcss -------------------------------------------------------------------------------- /src/dotenvhub/assets/modal_shell.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/assets/modal_shell.tcss -------------------------------------------------------------------------------- /src/dotenvhub/assets/tui.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/assets/tui.tcss -------------------------------------------------------------------------------- /src/dotenvhub/cli_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/cli_parser.py -------------------------------------------------------------------------------- /src/dotenvhub/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/config.py -------------------------------------------------------------------------------- /src/dotenvhub/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/constants.py -------------------------------------------------------------------------------- /src/dotenvhub/tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/tui.py -------------------------------------------------------------------------------- /src/dotenvhub/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/utils.py -------------------------------------------------------------------------------- /src/dotenvhub/widgets/filepanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/widgets/filepanel.py -------------------------------------------------------------------------------- /src/dotenvhub/widgets/interactionpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/widgets/interactionpanel.py -------------------------------------------------------------------------------- /src/dotenvhub/widgets/modals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/widgets/modals.py -------------------------------------------------------------------------------- /src/dotenvhub/widgets/previewpanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/src/dotenvhub/widgets/previewpanel.py -------------------------------------------------------------------------------- /tests/app_tests/test_filepanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/tests/app_tests/test_filepanel.py -------------------------------------------------------------------------------- /tests/app_tests/test_jumper_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/tests/app_tests/test_jumper_integration.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaloog/dotenvhub/HEAD/uv.lock --------------------------------------------------------------------------------