Complete Windows dev environment setup with Cerewro: Git, Node, Python and VSCode

Set up a complete development environment on Windows in minutes: install Git, Node.js, Python, VSCode and essential extensions using Chocolatey or winget from Cerewro chat with a single pipeline.

Complete Windows dev environment setup with Cerewro

Set up a complete development environment on Windows in under 10 minutes using Cerewro as the orchestrator: install Git, Node.js, Python, VSCode, Docker and essential extensions with a single pipeline.

Cerewro Chat — Dev environment setup
Set up a complete development environment on this Windows machine: install Git, Node.js LTS, Python 3, VSCode with JavaScript and Python extensions, Docker Desktop and configure Git with my name and email
PowerShell script generated by Cerewro
$apps = @("Git.Git","OpenJS.NodeJS.LTS","Python.Python.3","Microsoft.VisualStudioCode","Docker.DockerDesktop")
foreach ($app in $apps) {
    winget install --id $app --silent --accept-package-agreements --accept-source-agreements
}

$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" +
            [System.Environment]::GetEnvironmentVariable("Path","User")

git config --global user.name "Your Name"
git config --global user.email "you@email.com"
git config --global core.autocrlf true
git config --global init.defaultBranch main

code --install-extension ms-python.python
code --install-extension dbaeumer.vscode-eslint
code --install-extension esbenp.prettier-vscode
code --install-extension ms-azuretools.vscode-docker
code --install-extension eamodio.gitlens

Write-Host "Setup complete!" -ForegroundColor Green
Reproducible setup: Export the app list with winget export -o dev-setup.json to recreate the same environment on any other machine with winget import -i dev-setup.json.