29 lines
665 B
Markdown
29 lines
665 B
Markdown
# HexaHost GameCloud — static docs site
|
|
|
|
Minimal static documentation hub with links to the live API docs and key product pages.
|
|
|
|
## Serve locally
|
|
|
|
From the repository root:
|
|
|
|
```bash
|
|
pnpm install
|
|
pnpm --filter @hexahost/docs dev
|
|
```
|
|
|
|
Or from this directory:
|
|
|
|
```bash
|
|
pnpm install
|
|
pnpm dev
|
|
```
|
|
|
|
The site is served at http://localhost:4000.
|
|
|
|
## Prerequisites for linked resources
|
|
|
|
- **Web app** (`http://localhost:3000`) — run `pnpm --filter @hexahost/web dev`
|
|
- **API Swagger** (`http://localhost:3001/api/v1/docs`) — run `pnpm --filter @hexahost/api dev`
|
|
|
|
Repository markdown under `docs/` is referenced by path; open those files in your editor or on GitHub.
|