From f2777d613da73b9a7c4f7add9e45f37b97bf45d7 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 31 Jul 2026 10:09:20 -0700 Subject: [PATCH] Adjust server examples to align with markdownlint rules. --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9afbff7..9c38d8b 100644 --- a/README.md +++ b/README.md @@ -191,24 +191,28 @@ config file. The same variable names are used, prefixed with `NANO_POW_`: Environment variables can also be specified inline at time of execution. +- Launch the server and detach from the current session to run in the background + ```console -$ # Launch the server and detach from the current session to run in the background -$ NANO_POW_PORT=8080 nano-pow --server +NANO_POW_PORT=8080 nano-pow --server ``` +- View process ID for "NanoPow Server" + ```console -$ # View process ID for "NanoPow Server" -$ cat ~/.nano-pow/server.pid +cat ~/.nano-pow/server.pid ``` +- Display list of server logs + ```console -$ # Display list of server logs -$ ls ~/.nano-pow/logs/ +ls ~/.nano-pow/logs/ ``` +- Find process ID manually + ```console -$ # Find process ID manually -$ pgrep NanoPow +pgrep NanoPow ``` #### Usage -- 2.52.0