Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jshiell/mac-bootstrap
https://github.com/jshiell/mac-bootstrap
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jshiell/mac-bootstrap
- Owner: jshiell
- Created: 2022-10-02T12:55:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-09T09:54:28.000Z (5 months ago)
- Last Synced: 2024-10-15T14:26:11.433Z (29 days ago)
- Language: Shell
- Size: 40 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mac Bootstrap
Set up a Mac workstation using Ansible.
## Pre-requisites
You can override config locally by creating a `config.yaml` in this directory with your overrides.
## Running
You either bootstrap it via `curl`, or clone the repo and run it locally.
### Bootstrap
``` bash
curl -L -H 'accept: application/vnd.github.v3.raw' "https://api.github.com/repos/jshiell/mac-bootstrap/contents/bootstrap" | bash
```### Cloning and running locally
```bash
git clone [email protected]:jshiell/mac-bootstrap.git
cd workstation-bootstrap
./setup
```Alternately you can just run certain parts of it (see the tags in `main.yml`), e.g.
```bash
./setup "homebrew,nvm"
```## Credits
Very much inspired and influenced by [geerlingguy/mac-dev-playbook](https://github.com/geerlingguy/mac-dev-playbook/).