docs: improve doucmentation
improve doucmentation and fix small store changes
This commit is contained in:
@@ -5,18 +5,15 @@ sidebar_position: 1
|
||||
|
||||
# MetoYou Documentation
|
||||
|
||||
MetoYou is a desktop-first chat stack with a peer-to-peer product client, an Electron desktop shell, a Node signaling server, local persistence, realtime voice/video, a local automation API, and a client plugin runtime.
|
||||
MetoYou is a desktop-first chat app with text channels, voice channels, direct messages, plugins, local desktop storage, a local REST API, and a Docusaurus documentation site bundled into the app.
|
||||
|
||||
The product experience is intentionally close to a modern team chat application:
|
||||
This site is split into three paths:
|
||||
|
||||
- servers organize communities or workspaces;
|
||||
- text channels keep room conversations scoped and searchable;
|
||||
- direct messages stay separate from server context;
|
||||
- voice, video, and screen sharing use WebRTC peer connections;
|
||||
- invite links help members join the current server;
|
||||
- local desktop settings control data, updates, plugins, and automation access.
|
||||
- **User Guide** explains the app in non-technical terms: servers, text channels, voice channels, screen sharing, direct messages, plugins, and desktop settings.
|
||||
- **Developer Guide** explains how to run the repo, how the app is structured, how Docusaurus is served, the app DOM/page structure, and the local REST API.
|
||||
- **Plugin Development** explains how to build plugins, declare capabilities, distribute bundles, and call every exposed plugin API with concrete examples.
|
||||
|
||||
The Electron app also hosts this documentation. The docs endpoint is not a separate web server process: it is served from the same opt-in local HTTP server used for the Local API, and it only serves static files generated by Docusaurus.
|
||||
The Electron app can host this documentation locally. The docs endpoint is not a separate web server process: it is served from the same opt-in local HTTP server used for the Local API, and it only serves static files generated by Docusaurus.
|
||||
|
||||
## What Is Included
|
||||
|
||||
@@ -38,3 +35,14 @@ MetoYou keeps responsibilities split by package:
|
||||
- `docs-site/` is this Docusaurus site.
|
||||
|
||||
The desktop documentation endpoint serves the static `docs-site/build` output. It does not run the Docusaurus development server inside Electron.
|
||||
|
||||
## Fast Links
|
||||
|
||||
- Start using the app: [First Steps](./user-guide/first-steps.md)
|
||||
- Join voice: [Voice Channels and Calls](./user-guide/voice-channels.md)
|
||||
- Install plugins: [Plugins for Users](./user-guide/plugins.md)
|
||||
- Run the repo: [Contributing](./developer/contributing.md)
|
||||
- Understand pages and DOM: [App Pages and DOM Structure](./developer/dom-structure.md)
|
||||
- Use the REST API: [Local REST API](./developer/rest-api.md)
|
||||
- Build a plugin: [Create a Plugin](./plugin-development/create-a-plugin.md)
|
||||
- Give an LLM plugin context: [LLM Plugin Builder Guide](./developer/llm-plugin-builder-guide.md)
|
||||
|
||||
Reference in New Issue
Block a user