mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-28 16:47:23 +00:00
chore: homebrew (#3682)
This commit is contained in:
parent
0ba165363e
commit
0b2dfdd430
@ -51,7 +51,19 @@ dockers:
|
|||||||
- "--platform=linux/arm64"
|
- "--platform=linux/arm64"
|
||||||
|
|
||||||
archives:
|
archives:
|
||||||
- format: binary
|
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
||||||
|
replacements:
|
||||||
|
darwin: Darwin
|
||||||
|
linux: Linux
|
||||||
|
windows: Windows
|
||||||
|
386: i386
|
||||||
|
amd64: x86_64
|
||||||
|
format_overrides:
|
||||||
|
- goos: windows
|
||||||
|
format: zip
|
||||||
|
files:
|
||||||
|
- README.md
|
||||||
|
- LICENSE
|
||||||
|
|
||||||
gomod:
|
gomod:
|
||||||
proxy: false
|
proxy: false
|
||||||
@ -84,10 +96,6 @@ brews:
|
|||||||
- name: git
|
- name: git
|
||||||
install: |-
|
install: |-
|
||||||
bin.install "zitadel"
|
bin.install "zitadel"
|
||||||
bash_completion.install "completions/zitadel.bash" => "zitadel"
|
|
||||||
zsh_completion.install "completions/zitadel.zsh" => "zitadel"
|
|
||||||
fish_completion.install "completions/gorezitadelleaser.fish"
|
|
||||||
man1.install "manpages/zitadel.1.gz"
|
|
||||||
|
|
||||||
announce:
|
announce:
|
||||||
discord:
|
discord:
|
||||||
|
@ -16,8 +16,19 @@ export ZITADEL_EXTERNALDOMAIN=localhost
|
|||||||
export ZITADEL_DEFAULTINSTANCE_CUSTOMDOMAIN=localhost
|
export ZITADEL_DEFAULTINSTANCE_CUSTOMDOMAIN=localhost
|
||||||
export MY_ARCHITECTURE="arm64"
|
export MY_ARCHITECTURE="arm64"
|
||||||
|
|
||||||
# Download the zitadel binary
|
# Download and Install ZITADEL
|
||||||
|
|
||||||
|
Either use `Homebrew` ...
|
||||||
|
|
||||||
|
```bash
|
||||||
|
brew install zitadel/tap/zitadel
|
||||||
|
```
|
||||||
|
|
||||||
|
... or download the binary from GitHub
|
||||||
|
|
||||||
|
```bash
|
||||||
curl -s https://api.github.com/repos/zitadel/zitadel/releases/tags/v2.0.0-v2-alpha.3 | grep "browser_download_url.*zitadel_.*_darwin_${MY_ARCHITECTURE}" | cut -d '"' -f 4 | sudo wget -i - -O /usr/local/bin/zitadel && sudo chmod +x /usr/local/bin/zitadel && sudo chown $(id -u):$(id -g) /usr/local/bin/zitadel
|
curl -s https://api.github.com/repos/zitadel/zitadel/releases/tags/v2.0.0-v2-alpha.3 | grep "browser_download_url.*zitadel_.*_darwin_${MY_ARCHITECTURE}" | cut -d '"' -f 4 | sudo wget -i - -O /usr/local/bin/zitadel && sudo chmod +x /usr/local/bin/zitadel && sudo chown $(id -u):$(id -g) /usr/local/bin/zitadel
|
||||||
|
```
|
||||||
|
|
||||||
# Run the database and application containers
|
# Run the database and application containers
|
||||||
zitadel admin start-from-init --masterkey "MasterkeyNeedsToHave32Characters"
|
zitadel admin start-from-init --masterkey "MasterkeyNeedsToHave32Characters"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user