Installation
Client
Section titled “Client”You can download the client from GitHub or directly from the Homepage.
For linux we have .deb and .rpm files on github, two AUR packages and a Nix Flake.
Arch Linux
Section titled “Arch Linux”This includes these distros
Easy Install
Section titled “Easy Install”paru -S tensamin-binparu -S tensamin-git
Manual Install
Section titled “Manual Install”git clone https://aur.archlinux.org/tensamin-bincd tensamin-binmakepkg -sigit clone https://aur.archlinux.org/tensamin-gitcd tensamin-gitmakepkg -siNix Flake
Section titled “Nix Flake”flake.nix
- Add it to the inputs
{ # ... inputs = { tensamin.url = "github:Tensamin/Client"; # ... }; # ...}- Add it to the system packages
configuration.nix
{ inputs, pkgs, ...}: { # ... environment.systemPackages = [ inputs.tensamin.packages.${pkgs.stdenv.hostPlatform.system}.default ]; # ...}We provide a docker container and binary download on GitHub.
Docker
Section titled “Docker”Using docker run
docker run tensamin/iota:latestor using Docker-Compose
services: app: container_name: iota image: tensamin/iota:latest ports: - "1984:1984" # Needed for communties and web ui volumes: - data:/app - ./users.json:/app/users.json - ./config.json:/app/config.json
volumes: data:Build from source
Section titled “Build from source”git clone https://github.com/Tensamin/Iotacd Iotacargo build --release./target/release/iota