Skip to content

Instantly share code, notes, and snippets.

@rayterrill
Last active February 25, 2018 22:06
Show Gist options
  • Save rayterrill/de666f988e063b359625840b046e0a98 to your computer and use it in GitHub Desktop.
Save rayterrill/de666f988e063b359625840b046e0a98 to your computer and use it in GitHub Desktop.
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install 1password dropbox googlechrome nodejs powershell slack notepadplusplus git git-credential-manager-for-windows atom spotify 7zip Virtualbox vagrant conemu dropbox putty minikube -Confirm:$false -Force
Enable-WindowsOptionalFeature -Online -FeatureName IIS-WebServerRole
#setup git
git config --global user.email "rayjohnterrill@gmail.com"
git config --global user.name "rayterrill"
#stuff i'm working on
npm install -g npm@4 #downgrade to npm4 for react-native
npm install -g create-react-native-app
npm install -g yarn
npm install -g create-react-app
#getting a quick throwaway linux box
vagrant init ubuntu/xenial64
vagrant up
#mongodb
choco install mondodb
mkdir c:\mongodb
mkdir c:\mongodb\logs
mkdir c:\mongodb\data
mkdir c:\mongodb\data\db
& "C:\Program Files\MongoDB\Server\3.6\bin\mongod" --logpath c:\mongodb\logs\mongo.log --dbpath c:\mongodb\data\db --directoryperdb --install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment