Section Type

Installation

Renders a set of bash commands for setting up and running a project. A data-only section with no autodetection.

Fields

NameTypeDefault
Install Dependenciesinputnpm install
Build the Projectinputnpm run build
Run Testsinputnpm test
Run the Projectinputnpm start

Render Output

## INSTALLATION
### Install Dependencies
```bash
npm install
```
### Build the Project
```bash
npm run build
```
### Run Tests
```bash
npm test
```
### Run the Project
```bash
npm 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)