From: Chris Duncan Date: Fri, 31 Jul 2026 17:09:20 +0000 (-0700) Subject: Adjust server examples to align with markdownlint rules. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=f2777d613da73b9a7c4f7add9e45f37b97bf45d7;p=nano-pow.git Adjust server examples to align with markdownlint rules. --- 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