This directory contains the VitePress documentation site for introducing LoopAI.
- Check Node.js version
node -vIt is recommended to use Node.js 20.x.
- Check Yarn
yarn -vIf Yarn is not installed yet, you can enable it with Corepack:
corepack enable
corepack prepare yarn@stable --activate
yarn -vInstall dependencies:
yarn installStart the VitePress docs site locally:
yarn docs:devDefault local address:
http://localhost:5174
Build the static site:
yarn docs:buildPreview the built site locally:
yarn docs:previewDefault preview address:
http://localhost:4174
tutorial/
├── docs/
│ ├── .vitepress/ # VitePress site config
│ ├── guide/ # Tutorial pages
│ ├── public/ # Static assets such as images
│ └── index.md # Home page
├── package.json
└── README.md
docs/index.md: LoopAI overviewdocs/guide/webui-tutorial.md: WebUI tutorialdocs/guide/cli-tutorial.md: CLI tutorialdocs/guide/details/: Per-agent detailed guides
- Put screenshots and static images under
docs/public/ - WebUI tutorial images are currently stored under
docs/public/images/webui/