f7991572af
* fix desktop preload fetch typing * rename desktop app to Hermes Studio * rename desktop package to Hermes Studio * update Hermes Studio desktop icons * configure desktop signing and app id * force desktop api calls to local server * isolate desktop agent bridge ports * bundle MCP support in desktop Python * change desktop default port to 8748 * restore webui production port copy
32 lines
939 B
Markdown
32 lines
939 B
Markdown
# Hermes Studio
|
|
|
|
Electron desktop distribution for Hermes Studio.
|
|
|
|
## Data directories
|
|
|
|
Hermes Agent data is stored in the same platform-specific location as native
|
|
Hermes installs:
|
|
|
|
- Windows: `%LOCALAPPDATA%\hermes` (falls back to `%APPDATA%\hermes`)
|
|
- macOS/Linux: `~/.hermes`
|
|
|
|
The desktop wrapper's own Web UI state is stored separately in
|
|
`~/.hermes-web-ui` unless `HERMES_WEB_UI_HOME` is set.
|
|
|
|
## China mirror environment
|
|
|
|
These mirrors are optional and are not required in CI:
|
|
|
|
```sh
|
|
export NPM_CONFIG_REGISTRY=https://registry.npmmirror.com
|
|
export ELECTRON_MIRROR=https://npmmirror.com/mirrors/electron/
|
|
export ELECTRON_BUILDER_BINARIES_MIRROR=https://npmmirror.com/mirrors/electron-builder-binaries/
|
|
```
|
|
|
|
If GitHub release downloads are slow, `fetch-python.mjs` can also use a compatible
|
|
python-build-standalone release mirror:
|
|
|
|
```sh
|
|
export PBS_BASE_URL=https://github.com/astral-sh/python-build-standalone/releases/download
|
|
```
|