Section Type
Installation
Renders a set of bash commands for setting up and running a project. A data-only section with no autodetection.
Fields
| Name | Type | Default |
|---|---|---|
| Install Dependencies | input | npm install |
| Build the Project | input | npm run build |
| Run Tests | input | npm test |
| Run the Project | input | npm start |
Render Output
## INSTALLATION
### Install Dependencies```bashnpm install```
### Build the Project```bashnpm run build```
### Run Tests```bashnpm test```
### Run the Project```bashnpm start```Consumers
- CLI: Mustache template (
src/sections/installation/template.md) - Web App: Inline render function in section wrapper
- VS Code: Mustache template (same as CLI)