Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.dist.md dependency updates: Homebrew and Git. #89

Open
damontgomery opened this issue Mar 7, 2019 · 1 comment
Open

README.dist.md dependency updates: Homebrew and Git. #89

damontgomery opened this issue Mar 7, 2019 · 1 comment

Comments

@damontgomery
Copy link

damontgomery commented Mar 7, 2019

When walking this through with outside developers, we needed to install homebrew and configure Git for this to work.

https://brew.sh/

brew cask install vagrant virtualbox
brew install composer ansible

https://help.github.com/en/articles/setting-your-username-in-git
https://help.github.com/en/articles/setting-your-commit-email-address-in-git

git config --global user.name "John Smith"
git config --global user.email "email@example.com"

We encountered vagrant up failing if a local Git configuration wasn't created since it tries to copy it.

@damontgomery
Copy link
Author

I added this to a project:

Short list of commands for a new environment

# Install Homebrew.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

# Install depedencies.
brew cask install vagrant virtualbox
brew install composer ansible
vagrant plugin install vagrant-hostmanager vagrant-auto_network

# Configure Git with your name and email.
git config --global user.name "John Smith"
git config --global user.email "email@example.com"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant