Skip to content

Installation

We currently only support Linux!

We will start working on versions for Windows and macOS as soon as we have enough money to purchase the necessary certificates and hardware.

You can download a .deb, .rpm or .AppImage of the client from our Git.

flake.nix

  1. Add Tensamin to your inputs
{
# ...
inputs = {
tensamin.url = "git+https://git.methanium.net/tensamin/client";
# ...
};
# ...
}
  1. 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:

Using docker run

Terminal window
docker run tensamin/iota:latest

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: