@markus-global/cli 0.3.0 → 0.3.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
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @markus-global/cli
|
|
2
|
+
|
|
3
|
+
Official command-line interface for [Markus](https://github.com/markus-global/markus) — install, configure, and run the open-source AI team platform from your terminal.
|
|
4
|
+
|
|
5
|
+
The CLI wraps interactive setup (`markus init`) and platform startup (`markus start`) so you can go from zero to a running dashboard without cloning the monorepo.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @markus-global/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Quick start
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
markus init && markus start
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Then open the app in your browser (default: `http://localhost:8056`).
|
|
20
|
+
|
|
21
|
+
## Documentation
|
|
22
|
+
|
|
23
|
+
Full guides, architecture, and API reference live in the main repository: [github.com/markus-global/markus](https://github.com/markus-global/markus).
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
|
|
27
|
+
[AGPL-3.0](https://github.com/markus-global/markus/blob/main/LICENSE)
|