this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Makefile and README

+5 -16
-5
Makefile
··· 1 1 .PHONY: setup 2 2 setup: 3 - # TODO: install homebrew first 4 3 homebrew install ansible 5 4 ansible-galaxy collection install community.general 6 5 7 6 .PHONY: apply 8 7 apply: 9 8 ansible-playbook playbooks/main.yml -i hosts 10 - 11 - .PHONY: brew 12 - brew: 13 - brew bundle --cleanup --zap
+5 -11
README.md
··· 1 1 # dotfiles 2 2 3 - Just my personal configuration for some of my tools, applied with ansible 4 - 5 - ## Pre-reqs 6 - 7 - - homebrew 8 - - ansible 9 - 10 - ## Installing 3 + Config files for my personal dev setup on MacOS. 11 4 12 - ``` 13 - $ make apply 14 - ``` 5 + - Initial setup 6 + - Install [homebrew](https://brew.sh) 7 + - Run `make setup` 8 + - Run `make apply` to put everything in place, and anytime there are changes