An open API service indexing awesome lists of open source software.

https://github.com/pwshdevs/devsetup

DevSetup is a tool for developers to install consistent development environments across all members of a team. The goal is to eliminate the 'it works in my environment' mentality by ensuring all members have the same set of 'known good' tools.
https://github.com/pwshdevs/devsetup

chocolately homebrew linux macos powershell scoop windows

Last synced: 4 days ago
JSON representation

DevSetup is a tool for developers to install consistent development environments across all members of a team. The goal is to eliminate the 'it works in my environment' mentality by ensuring all members have the same set of 'known good' tools.

Awesome Lists containing this project

README

          

# devsetup
## Installation

To install `devsetup` run the command below, ensure you are running it from an elevated shell (Administrator) when running on Windows as some of the commands need Administrator privileges (for instance, installing NuGet).
```bash
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser -Force
iwr https://install.pwshdevs.com/devsetup | iex
```

Once `devsetup` is installed run the command below to initialize your environment.
```bash
devsetup -init
```