Skip to content

Commit

Permalink
docs: update apt/yum installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Oct 6, 2022
1 parent 60f2f8f commit 0da7a86
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,17 @@ pacman -S soft-serve
nix-env -iA nixpkgs.soft-serve

# Debian/Ubuntu
echo 'deb [trusted=yes] https://repo.charm.sh/apt/ /' | sudo tee /etc/apt/sources.list.d/charm.list
echo "deb https://repo.charm.sh/apt/ * *" | sudo tee /etc/apt/sources.list.d/charm.list
curl https://repo.charm.sh/apt/gpg.key | sudo apt-key add -
sudo apt update && sudo apt install soft-serve

# Fedora
echo '[charm]
name=Charm
baseurl=https://repo.charm.sh/yum/
enabled=1
gpgcheck=0' | sudo tee /etc/yum.repos.d/charm.repo
gpgcheck=1
gpgkey=https://repo.charm.sh/yum/gpg.key' | sudo tee /etc/yum.repos.d/charm.repo
sudo yum install soft-serve
```

Expand Down

0 comments on commit 0da7a86

Please sign in to comment.