From 6de15537cee7260550d6ce89d37118420d8bd263 Mon Sep 17 00:00:00 2001 From: viljarb Date: Tue, 10 Mar 2026 15:36:15 +0100 Subject: [PATCH] updating the readme a little --- README.md | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a71b87a..acbe0df 100644 --- a/README.md +++ b/README.md @@ -54,20 +54,27 @@ choco install make ## Build Commands + ```bash -# Build all binaries -make build # Creates bin/pm, bin/tui, bin/web, bin/survey +# Run web (without hot reload) +make web -# Run specific interfaces -make cli # Run CLI interface -make tui # Run TUI interface (interactive) -make web # Run Web server (localhost:8080) -make start # Run survey interface - -# Development with hot reload +# Web with hot reload make dev # Watch templ files and auto-reload web make tw # Watch Tailwind CSS changes +# Run tui +make tui + +# Run cli +go run ./cmd/cli + +# Run a specific task with a specific interface (e.g. WEB UI and priority_management) +go run ./cmd/pm survey start -i web -t priority_management + +# Build all binaries +make build # Creates bin/pm, bin/tui, bin/web, bin/survey + # Docker (lazyos desktop environment) make os-build # Build lazyos Docker image make os-run # Run lazyos container (localhost:3000-3001) @@ -194,4 +201,4 @@ See `.github/workflows/` for details. ## License -See [LICENSE](LICENSE) file for details. \ No newline at end of file +See [LICENSE](LICENSE) file for details.