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
{ # ... inputs = { tensamin.url = "github:Tensamin/Frontend"; # ... };
outputs = { tensamin, # ... }: # ...}configuration.nix
{ }: { # ... environment.systemPackages = [ inputs.tensamin.packages.${pkgs.system}.default ]; # ...}You can download the Iota from GitHub. We also provide a Docker container and a Nix Flake.
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:Nix Flake
Section titled “Nix Flake”Not available yet!
services.iota = { enable = true; id = "<uuid>"; users = [ "<uuid>" ];};Build from source
Section titled “Build from source”git clone https://github.com/Tensamin/Iotacd Iotacargo build --release./target/release/iota