Skip to content

Instantly share code, notes, and snippets.

@Kyle-Jeynes
Forked from cfalta/install-and-run-covenant.sh
Last active December 8, 2021 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kyle-Jeynes/f42b3909e15587f566aa0f3f77e2103e to your computer and use it in GitHub Desktop.
Save Kyle-Jeynes/f42b3909e15587f566aa0f3f77e2103e to your computer and use it in GitHub Desktop.
install and run covenant on ubuntu
#!/bin/bash
# https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#2110-
wget https://packages.microsoft.com/config/ubuntu/21.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
dpkg -i packages-microsoft-prod.deb
apt update
apt install -y apt-transport-https
apt install -y dotnet-sdk-6.0
git clone --recurse-submodules https://github.com/cobbr/Covenant
cd Covenant/Covenant
dotnet build
dotnet run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment