docs: update portal for WRNexusJS 0.2.64

This commit is contained in:
2026-07-19 22:03:49 +05:30
parent 517dd5ca03
commit bb37d148e6
77 changed files with 551 additions and 520 deletions
+14 -2
View File
@@ -1,4 +1,4 @@
# WRNexusJS documentation 0.2.63
# WRNexusJS documentation 0.2.64
Status: Private Developer Preview. This site documents 26 release-aligned packages.
@@ -12903,7 +12903,7 @@ Events: none
# Installed package documentation
The following README files and declarations come from the installed private 0.2.63 release.
The following README files and declarations come from the installed private 0.2.64 release.
## @wrnexus/ai
@@ -13400,6 +13400,7 @@ Every command accepts an optional `[app-dir]` (defaults to `.`). Commands that r
| `wrnexus workspace <name>` | Scaffold a monorepo (`apps/*` + shared `packages/*`). |
| `wrnexus workspace add <name>` | Add and register an app in the current workspace. |
| `wrnexus gateway [--port=3000]` | Serve every workspace app behind one port, routed by domain. |
| `wrnexus production [workspace-dir]` | Build, migrate, and serve every workspace app in production. |
| `wrnexus generate <type> <name>` | Scaffold a `page` \| `component` \| `api` \| `schema`. |
| `wrnexus generate routes` | Regenerate the typed routes file (`app/routes.gen.ts`). |
| `wrnexus generate docker` | Scaffold `Dockerfile`, `.dockerignore`, and `docker-compose.yml`. |
@@ -13532,6 +13533,17 @@ wrnexus workspace acme
wrnexus gateway --port=3000
```
For a complete production start, use the first-class workspace orchestrator:
```bash
wrnexus production --host=0.0.0.0 --port=3000
```
It builds every registered app, applies default and named-database SQL migrations
when present, and starts the production gateway only after preparation succeeds.
Use `--prepare-only`, `--no-build`, or `--no-migrate` when deployment stages are
managed separately; `--environment=<name>` selects another workspace environment.
From a workspace root, add and register another app in one command:
```bash