847989df75
- git mv cmd/ internal/ pkg/ test/ go.mod go.sum Makefile build.sh docs/ v1/ - Create v1/README.md with V1 documentation - Update root README for V1 + V2 structure - V1 still builds (cd v1 && go build ./cmd/hostkeeper) and 105 tests pass - Root is now clean for V2 development
38 lines
617 B
Markdown
38 lines
617 B
Markdown
# Hostkeeper V1 — CLI/TUI
|
|
|
|
> **Status**: FROZEN — no further development.
|
|
> Pembuatan V2 dilakukan di folder `../app/` dan `../mobile/`.
|
|
|
|
Hostkeeper V1 adalah SSH/SFTP management tool berbasis CLI + TUI (Bubble Tea).
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
cd v1
|
|
make build
|
|
./hostkeeper tui
|
|
```
|
|
|
|
## Dokumentasi
|
|
|
|
- [Architecture](docs/ARCHITECTURE.md)
|
|
- [Installation](docs/INSTALLATION.md)
|
|
- [Usage](docs/USAGE.md)
|
|
- [Test Plan](docs/TEST_PLAN.md)
|
|
- [Project State](PROJECT_STATE.md)
|
|
|
|
## Tech Stack
|
|
|
|
- Go 1.26+
|
|
- Cobra (CLI)
|
|
- Bubble Tea (TUI)
|
|
- golang.org/x/crypto/ssh
|
|
|
|
## Test
|
|
|
|
```bash
|
|
cd v1
|
|
make test
|
|
# 105 tests passing
|
|
```
|