From f97e0526d7d9ffa8e8cd5825f47cc3e9d82b9f93 Mon Sep 17 00:00:00 2001 From: David Stotijn Date: Mon, 28 Sep 2020 21:58:25 +0200 Subject: [PATCH] Fix usage snippet in README --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3d4a17d..89f8e2b 100644 --- a/README.md +++ b/README.md @@ -72,15 +72,16 @@ http://localhost:8080. Depending on incoming HTTP requests, it either acts as a MITM proxy, or it serves the GraphQL API and web interface (Next.js). ``` -$ Usage of ./hetty: +$ hetty -h +Usage of ./hetty: -addr string - TCP address to listen on, in the form "host:port" (default ":80") + TCP address to listen on, in the form "host:port" (default ":8080") -adminPath string File path to admin build -cert string CA certificate filepath. Creates a new CA certificate is file doesn't exist (default "~/.hetty/hetty_cert.pem") -db string - Database file path (default "hetty.db") + Database file path (default "~/.hetty/hetty.bolt") -key string CA private key filepath. Creates a new CA private key if file doesn't exist (default "~/.hetty/hetty_key.pem") ```