Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Dependabot configuration
# Docs: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
# Keep GitHub Actions used in .github/workflows up to date
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns:
- "*"
43 changes: 38 additions & 5 deletions macos/install_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,20 @@ else
echo "Node.js is already installed."
fi

# Install Gemini CLI
if ! command -v gemini &> /dev/null; then
echo "Gemini CLI not found. Installing..."
brew install gemini-cli
# Install Antigravity CLI
if ! command -v antigravity &> /dev/null; then
echo "Antigravity CLI not found. Installing..."
brew install --cask antigravity-cli
else
echo "Gemini CLI is already installed."
echo "Antigravity CLI is already installed."
fi

# Install Copilot CLI
if ! command -v copilot &> /dev/null; then
echo "Copilot CLI not found. Installing..."
brew install copilot-cli
else
echo "Copilot CLI is already installed."
fi

# Install Google Cloud CLI
Expand All @@ -104,4 +112,29 @@ else
echo "Terraform is already installed."
fi

# Install Android CLI
if ! command -v android &> /dev/null; then
echo "Android CLI not found. Installing..."
brew tap android/tap
brew install android-cli
else
echo "Android CLI is already installed."
fi

# Install Flutter
if ! command -v flutter &> /dev/null; then
echo "Flutter not found. Installing..."
brew install --cask flutter
else
echo "Flutter is already installed."
fi

# Install Gradle
if ! command -v gradle &> /dev/null; then
echo "Gradle not found. Installing..."
brew install gradle
else
echo "Gradle is already installed."
fi

echo "All installations completed."