-
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.
Signed-off-by: “huazhongming” <[email protected]>
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*.log* | ||
.vscode | ||
.idea | ||
.test | ||
.out | ||
!./.gitignore | ||
.DS_Store | ||
|
||
# Idea | ||
*.iml | ||
|
||
# git | ||
*.orig | ||
|
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Layotto's Homebrew Tap | ||
|
||
## Setup | ||
|
||
Install [Homebrew](https://brew.sh) for macOS. | ||
|
||
## Install Layotto Runtime | ||
|
||
Install on macOS: | ||
|
||
```sh | ||
brew install layotto/tap/layotto | ||
``` | ||
|
||
## Generate new version. | ||
|
||
Automated via GitHub action, runs every 5 minutes. |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Documentation: https://docs.brew.sh/Formula-Cookbook | ||
# https://rubydoc.brew.sh/Formula | ||
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! | ||
class Layotto < Formula | ||
desc "A fast and efficient cloud native application runtime" | ||
homepage "http://mosn.io/layotto/" | ||
url "https://github.com/mosn/layotto/releases/download/v0.5.0/layotto.darwin_arm64.zip" | ||
sha256 "9a6b10517d53d56513d72254a7638c39829b6b632cfe1fc621a7ccc11eb658b4" | ||
license "Apache-2.0" | ||
|
||
end | ||
|
||
def install | ||
bin.install "layotto" | ||
end | ||
|
||
test do | ||
system "false" | ||
end | ||
end |