Laptop needs admin access and needs a password. If there is admin access and no password, create a new user with a password and admin privileges. It's also best to add the password to the screensaver.
- Install Homebrew - brew.sh
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Create
.profile
:touch ~/.profile
- Install nvm - nvm.sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.1/install.sh | bash
- Source new
.profile
-source .profile
- Install Node.js
nvm install node
- Install Loopback - loopback.io
npm install -g @loopback/cli
- Install Docker for Mac - https://docs.docker.com/v17.12/docker-for-mac/install/
- Start Docker and once it is started, open preferences from menu and Enable Kubernetes
- Install Appsody - appsody.dev
brew install appsody/appsody/appsody
- Add
wipe
command to.profile
-echo 'alias wipe="cd ~ && rm -rf workspace && mkdir workspace && cd workspace && clear"' >> ~/.profile