From c5e9fba9628e053117ba99c9655fdc232b1d1356 Mon Sep 17 00:00:00 2001 From: David Fisher Date: Fri, 19 Apr 2024 17:40:35 -0400 Subject: [PATCH] Install Homebrew dependencies from a Brewfile because: Installing all dependencies at once speeds up the setup process. this commit: Adds a Brewfile to the repository, updates the README.md to include instructions and adds the lockfile to the .gitignore file. --- .gitignore | 5 ++++- Brewfile | 2 ++ README.md | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 Brewfile diff --git a/.gitignore b/.gitignore index 0061344..0a4dfe6 100644 --- a/.gitignore +++ b/.gitignore @@ -160,4 +160,7 @@ cython_debug/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ \ No newline at end of file +#.idea/ + +# Homebrew +Brewfile.lock.json \ No newline at end of file diff --git a/Brewfile b/Brewfile new file mode 100644 index 0000000..b8cfc80 --- /dev/null +++ b/Brewfile @@ -0,0 +1,2 @@ +brew "pipx" +brew "ffmpeg" \ No newline at end of file diff --git a/README.md b/README.md index ef7d3c5..0a5884b 100644 --- a/README.md +++ b/README.md @@ -159,12 +159,12 @@ git clone https://github.com/danielmiessler/fabric.git cd fabric ``` -4. Install pipx: +4. Install pipx and ffmpeg via Homebrew: macOS: ```bash -brew install pipx +brew bundle ``` Linux: