-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Megabyte Labs
committed
Mar 11, 2022
1 parent
c06d98e
commit f66fd0f
Showing
46 changed files
with
1,610 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
# Standard Homebrew taps | ||
tap "homebrew/cask" | ||
tap "homebrew/core" | ||
tap "homebrew/bundle" | ||
tap "homebrew/services" | ||
tap "caskroom/cask" | ||
|
||
# Homebrew Formulae | ||
# e.g. `brew install <program>` | ||
# @brew [act](https://github.com/nektos/act) - Run GitHub Actions locally | ||
brew "act" | ||
# @brew [appium](https://appium.io/) - A framework focused on native Android/iOS testing | ||
brew "appium" | ||
# @brew [azure-cli](https://docs.microsoft.com/en-us/cli/azure/) - The official CLI for interacting with Microsoft Azure | ||
brew "azure-cli" | ||
# @brew [bat](https://github.com/sharkdp/bat) - Clone of cat with syntax highlighting and Git integration | ||
brew "bat" | ||
# @brew [bitwarden-cli](https://github.com/bitwarden/cli) - Access and manage a BitWarden instance via CLI | ||
brew "bitwarden-cli" | ||
# @brew [codeclimate](https://github.com/codeclimate/codeclimate) - Interact with CodeClimate via CLI | ||
tap "codeclimate/formulae" | ||
brew "codeclimate" | ||
# @brew [croc](https://github.com/schollz/croc) - A sharing tool that helps transfer files from one computer to another | ||
brew "croc" | ||
|
@@ -34,13 +36,12 @@ end | |
# @brew [docker-slim](https://github.com/docker-slim/docker-slim) - A tool that shrinks Docker images and makes them more secure | ||
brew "docker-slim" | ||
# @brew [Dockle](https://github.com/goodwithtech/dockle) - A container image security scanner | ||
tap "goodwithtech/r" | ||
brew "goodwithtech/r/dockle" | ||
# @brew [exiftool](https://exiftool.org) - A library for reading and writing EXIF data to files | ||
brew "exiftool" | ||
# @brew [ffsend](https://github.com/timvisee/ffsend) - Fully featured Firefox Send client that makes sharing files easy | ||
brew "ffsend" | ||
# @brew [gcloud](https://cloud.google.com/sdk/gcloud) - The official Google Cloud Platform SDK CLI tool | ||
brew "gcloud" | ||
# @brew [gh](https://github.com/cli/cli) - The official GitHub command line tool | ||
brew "gh" | ||
# @brew [git](https://git-scm.com) - Tool for interacting with git repositories | ||
|
@@ -69,6 +70,7 @@ brew "jq" | |
brew "kubectx" | ||
brew "kubernetes-cli" | ||
# @brew [mc](https://github.com/minio/mc) - Replacement for ls, cp and other commands that are compatible with file-system-mounted S3 buckets | ||
tap "minio/stable" | ||
brew "minio/stable/mc" | ||
# @brew [mkcert](https://github.com/FiloSottile/mkcert) - Simple tool to make locally trusted development certificates | ||
brew "mkcert" | ||
|
@@ -81,7 +83,7 @@ brew "ots" | |
# @brew [oq](https://blacksmoke16.github.io/oq) - Performant, and portable jq wrapper that supports formats other than JSON | ||
brew "oq" | ||
# @brew [php](https://www.php.net/) - General-purpose scripting language | ||
brew "php", restart_service: true | ||
# brew "php", restart_service: false | ||
# @brew [poetry](https://python-poetry.org/) - A Python project package management tool and more | ||
brew "poetry" | ||
# @brew [pup](https://github.com/EricChiang/pup) - Parse HTML with a CLI | ||
|
@@ -92,24 +94,26 @@ brew "[email protected]" | |
brew "rsync" | ||
# @brew [ruby](https://www.ruby-lang.org/) - Powerful, clean, object-oriented scripting language | ||
brew "ruby" | ||
# @brew [sentry-cli](https://github.com/getsentry/sentry-cli) - Interact with Sentry via a CLI | ||
brew "getsentry/tools/sentry-cli" | ||
# @brew [sshpass](https://github.com/hudochenkov/homebrew-sshpass) - Library that allows Ansible to connect over SSH with a password | ||
tap "hudochenkov/sshpass" | ||
brew "hudochenkov/sshpass/sshpass" | ||
# @brew [sysbench](https://github.com/akopytov/sysbench) - System performance benchmark tool | ||
brew "sysbench" | ||
# @brew [task](https://github.com/go-task/homebrew-tap) - A parallel task runner | ||
tap "go-task/tap" | ||
brew "go-task/tap/go-task" | ||
# @brew [teleport](https://github.com/bbatsche/homebrew-teleport) - An identity-aware SSH client for teams | ||
brew "teleport" | ||
brew "terraform" | ||
# @brew [tokei](https://github.com/XAMPPRocky/tokei) - Count and display the lines of code and the language used in a project | ||
brew "tokei" | ||
# @brew [trivy](https://aquasecurity.github.io/trivy/v0.18.3/) - Scan images for vulnerabilities | ||
tap "aquasecurity/trivy" | ||
brew "aquasecurity/trivy/trivy" | ||
# @brew [up](https://github.com/akavel/up) - Write Linux pipes with an instant live preview | ||
brew "up" | ||
# @brew [waypoint](https://www.waypointproject.io/) - Tool to build, deploy, and release any application on any platform | ||
tap "hashicorp/tap" | ||
brew "hashicorp/tap/waypoint" | ||
# @brew [wireshark](https://www.wireshark.org) - Graphical network analyzer and capture tool (CLI) | ||
if OS.linux? | ||
|
@@ -140,6 +144,8 @@ cask "firefox" | |
cask "gimp" | ||
# @cask [google-chrome](https://www.google.com/chrome/) - Sandbox-based web browser published by Google | ||
cask "google-chrome" | ||
# @cask [gcloud](https://cloud.google.com/sdk/gcloud) - The official Google Cloud Platform SDK CLI tool | ||
cask "google-cloud-sdk" | ||
# @cask [iterm2](https://www.iterm2.com/) - An improved terminal for macOS | ||
cask "iterm2" | ||
# @cask [java](https://www.java.com/en/) - Libraries required for running and developing Java applications | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
> <br/>**A no-stone-unturned Ansible playbook you can use to set up the ultimate home lab or on-premise addition to your cloud!**<br/><br/> | ||
> <br/><h4 align="center">**A no-stone-unturned Ansible playbook you can use to set up the ultimate home lab or on-premise addition to your cloud!**</h4><br/><br/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.