[PR #2] [MERGED] feat: homebrew #251

Closed
opened 2026-02-16 01:15:14 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-plugin-daemon/pull/2
Author: @crazywoola
Created: 11/29/2024
Status: Merged
Merged: 11/29/2024
Merged by: @Yeuoly

Base: mainHead: feat/homebrew


📝 Commits (4)

📊 Changes

5 files changed (+143 additions, -1 deletions)

View changed files

📝 .gitignore (+2 -1)
Makefile (+74 -0)
README.md (+9 -0)
dify.rb (+26 -0)
docs/build_homebrew.md (+32 -0)

📄 Description

Build homebrew

Intallation

Install homebrew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

brew -v

Build CLI tool

# Build the CLI tool from source
make build 
# Generate the sha256 checksum
make sha256 
# Update the formula with the new sha256 checksum
make update_formula
# Clean the build
make clean

# You can run this only
# Execute all the above commands
make all 

Install CLI tool

brew install --build-from-source ./dify.rb

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-plugin-daemon/pull/2 **Author:** [@crazywoola](https://github.com/crazywoola) **Created:** 11/29/2024 **Status:** ✅ Merged **Merged:** 11/29/2024 **Merged by:** [@Yeuoly](https://github.com/Yeuoly) **Base:** `main` ← **Head:** `feat/homebrew` --- ### 📝 Commits (4) - [`f2c2ede`](https://github.com/langgenius/dify-plugin-daemon/commit/f2c2ede2adc6451ec58891d32729e8b22840c649) feat: homebrew - [`28880e1`](https://github.com/langgenius/dify-plugin-daemon/commit/28880e1fb36b513ca196d5dc003f6fd3c1e646e4) fix: makefile - [`d251679`](https://github.com/langgenius/dify-plugin-daemon/commit/d2516794e78a303149cd51c9de6b22a0372c9297) feat: add linux & windows - [`8f76287`](https://github.com/langgenius/dify-plugin-daemon/commit/8f76287202721254d06b7b81b14ff7a2a114ff47) feat: add linux & windows ### 📊 Changes **5 files changed** (+143 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -1) ➕ `Makefile` (+74 -0) ➕ `README.md` (+9 -0) ➕ `dify.rb` (+26 -0) ➕ `docs/build_homebrew.md` (+32 -0) </details> ### 📄 Description # Build homebrew ## Intallation ### Install homebrew ```bash /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew -v ``` ### Build CLI tool ```bash # Build the CLI tool from source make build # Generate the sha256 checksum make sha256 # Update the formula with the new sha256 checksum make update_formula # Clean the build make clean # You can run this only # Execute all the above commands make all ``` ### Install CLI tool ```bash brew install --build-from-source ./dify.rb ``` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 01:15:14 -05:00
yindo closed this issue 2026-02-16 01:15:14 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-plugin-daemon#251