@nano-step/nano-brain 2026.7.201 → 2026.7.301
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,17 +25,13 @@ CGO_ENABLED=0 go build -o nano-brain ./cmd/nano-brain
|
|
|
25
25
|
### Start
|
|
26
26
|
|
|
27
27
|
```bash
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
-e POSTGRES_USER=nanobrain -e POSTGRES_PASSWORD=nanobrain -e POSTGRES_DB=nanobrain_dev \
|
|
31
|
-
pgvector/pgvector:pg17
|
|
28
|
+
npm install -g @nano-step/nano-brain && nano-brain init
|
|
29
|
+
```
|
|
32
30
|
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
`nano-brain init` is an interactive wizard that provisions PostgreSQL (via Docker or a remote URL), optionally enables embeddings, starts the server, registers your project, and configures your MCP client — then tells you to restart your AI client.
|
|
32
|
+
|
|
33
|
+
For a manual, per-step setup (VPS / team, no Docker, or Windows), see [docs/SETUP_AGENT.md](docs/SETUP_AGENT.md).
|
|
35
34
|
|
|
36
|
-
# Register your project
|
|
37
|
-
nano-brain init --root=/path/to/your/project
|
|
38
|
-
```
|
|
39
35
|
---
|
|
40
36
|
|
|
41
37
|
## Why Star This Project?
|