docs(server): improve CLI flag/env var docs

Make server usage easier to discover from the root README, add local install/run instructions, and document additional CLI flags/env vars for UI and logging.
This commit is contained in:
Shantur Rathore
2026-02-15 15:21:09 +00:00
parent 35ff359c0f
commit 682937e945
2 changed files with 46 additions and 0 deletions

View File

@@ -44,6 +44,22 @@ Run CodeNomad as a local server and access it via your web browser. Perfect for
npx @neuralnomads/codenomad --launch
```
Full server/CLI documentation (flags + env vars, TLS, auth, remote access):
`packages/server/README.md`
To see all available options:
```bash
npx @neuralnomads/codenomad --help
```
If you prefer not to run it as a one-off `npx @neuralnomads/codenomad`, you can install it and run the local binary:
```bash
npm install @neuralnomads/codenomad
npx codenomad --launch
```
For dev version
```bash