Initial commit: kport - SSH Port Forwarder TUI

- Interactive TUI for SSH port forwarding
- Reads from ~/.ssh/config for host selection
- Automatic port detection on remote hosts
- Manual port forwarding option
- Graceful error handling and connection timeouts
- Built with Bubble Tea framework

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
Ona
2025-09-25 23:57:44 +00:00
commit e39a595956
12 changed files with 1332 additions and 0 deletions

5
.devcontainer/Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM mcr.microsoft.com/devcontainers/base:ubuntu-24.04
# use this Dockerfile to install additional tools you might need, e.g.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>