QUIC, get to the choppa!
Tools to help you unlock internet superpowers with Datum
Tools to help you unlock internet superpowers with Datum
Install Datum via Homebrew with the following command:
# Tap the Datum Cloud formula repository (only needs to be done once)brew tap datum-cloud/homebrew-tap
# Install datumctlbrew install datumctl
# Upgrade datumctlbrew upgrade datumctlThe easiest way to install datumctl is by downloading the pre-built binary for your operating system and architecture from the GitHub Releases page.
This example shows how to download and install a specific version. You must:
VERSION="<version>"ARCHIVE="<archive_filename>"curl -sSL "https://github.com/datum-cloud/datumctl/releases/download/${VERSION}/${ARCHIVE}" | tar xzsudo mv datumctl /usr/local/bin/datumctl ships with a flake.nix so you don’t have to install anything:
# Pick latest from gitnix run github:datum-cloud/datumctl
# Specify versionnix run github:datum-cloud/datumctl/b044455d877b800812e4fd78e42429c1617c011b
# Run from local git clonenix run
# Start shell with all dependencies availablenix develop --command zsh
# Build locallynix build
# ...or for specific platformnix build .#packages.x86_64-linux.defaultnix build .#packages.aarch64-linux.defaultYou can, however, incorporate it into your home-manager build or other flake so that it’s always available in your profile.
datumctl ships with a flake.nix so you don’t have to install anything:
# Pick latest from gitnix run github:datum-cloud/datumctl
# Specify versionnix run github:datum-cloud/datumctl/b044455d877b800812e4fd78e42429c1617c011b
# Run from local git clonenix run
# Start shell with all dependencies availablenix develop --command zsh
# Build locallynix build
# ...or for specific platformnix build .#packages.x86_64-linux.defaultnix build .#packages.aarch64-linux.defaultYou can, however, incorporate it into your home-manager build or other flake so that it’s always available in your profile.
If you prefer, you can build datumctl from source:
1. Prerequisites:
2. Clone the repository:
git clone https://github.com/datum-cloud/datumctl.gitcd datumctlgo build -o datumctl .To verify the installation, run:
datumctl versionThis should output the installed version of datumctl.