]> git.codecow.com Git - nano-pow.git/commitdiff
Adjust server examples to align with markdownlint rules.
authorChris Duncan <chris@codecow.com>
Fri, 31 Jul 2026 17:09:20 +0000 (10:09 -0700)
committerChris Duncan <chris@codecow.com>
Fri, 31 Jul 2026 17:09:20 +0000 (10:09 -0700)
README.md

index 9afbff7a07aa6c9e97d04407f7aea66ec76c4586..9c38d8b164e3bcb9cb23aaa9bf5cb42e420bed90 100644 (file)
--- 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