Installation
We currently only support Linux!
As soon as we have enough money to purchase the necessary certificates and hardware to produce versions for Windows and macOS, we will do so.
Client
Section titled “Client”You can download a .deb, .rpm or .AppImage of the client from our Git.
Nix Flake
Section titled “Nix Flake”flake.nix
- Add Tensamin to your inputs
{ # ... inputs = { tensamin.url = "git+https://git.methanium.net/tensamin/client"; # ... }; # ...}- And add the package
configuration.nix
{ inputs, pkgs, ...}: { # ... environment.systemPackages = [ inputs.tensamin.packages.${pkgs.stdenv.hostPlatform.system}.default ]; # ...}You can download the Iota from our Git or run the docker image:
Docker
Section titled “Docker”Using docker run
docker run tensamin/iota:latestUsing 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: