@harborclient/team-hub 0.2.1
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 +35 -0
- package/dist/cli.js +7986 -0
- package/dist/cli.js.map +1 -0
- package/package.json +77 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
**Full documentation:** [https://harborclient.github.io/team-hub/](https://harborclient.github.io/team-hub/)
|
|
4
|
+
|
|
5
|
+
**Linux CLI server for shared HarborClient storage and team workflows.**
|
|
6
|
+
|
|
7
|
+
`team-hub` is the central server companion to [HarborClient](https://github.com/harborclient/harborclient):
|
|
8
|
+
|
|
9
|
+
- **CLI-first:** Run and manage the server from the `team-hub` command.
|
|
10
|
+
- **Fastify HTTP API:** HTTP server scaffold ready for HarborClient desktop clients.
|
|
11
|
+
- **Configurable storage:** YAML-based server config with MySQL database support.
|
|
12
|
+
|
|
13
|
+
## Documentation
|
|
14
|
+
|
|
15
|
+
| Topic | Link |
|
|
16
|
+
| --------------- | ---------------------------------------------------------------------- |
|
|
17
|
+
| Getting started | [Introduction](https://harborclient.github.io/team-hub/) |
|
|
18
|
+
| Prerequisites | [Prerequisites](https://harborclient.github.io/team-hub/prerequisites) |
|
|
19
|
+
| Setup | [Setup](https://harborclient.github.io/team-hub/setup) |
|
|
20
|
+
| Development | [Development](https://harborclient.github.io/team-hub/development) |
|
|
21
|
+
|
|
22
|
+
Canonical docs live in [`docs/`](./docs/). Edit those pages directly, then run `pnpm docs:build:nav` to refresh the VitePress sidebar.
|
|
23
|
+
|
|
24
|
+
## Development
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pnpm install
|
|
28
|
+
pnpm test
|
|
29
|
+
pnpm docs:serve # VitePress dev server with nav watcher
|
|
30
|
+
pnpm docs:build # production docs build
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|