Skip to content

Latest commit

 

History

History
173 lines (117 loc) · 6.36 KB

dev-env.md

File metadata and controls

173 lines (117 loc) · 6.36 KB

Set up local dev environment

Script version

This instruction is available in a script version. If you prefer it, you can run:

git clone -o upstream https://github.com/fedimint/fedimint && cd fedimint && ./scripts/bootstrap.sh

and follow the instructions instead of reading this document.

Clone repository

Clone this repository locally, with git clone <repo-url>, then cd <repo-dir>,

MacOS

If you encounter problems with Nix on MacOS, refer to the macOS Guide.

If you want to use zld for faster linking, you can uncomment the relevant lines in the .cargo/config.toml. Please put the .cargo/config.toml in your .git/info/exclude if you choose to use zld. In case you want to submit a PR changing this file, uncomment the zld configuration again.

Set up Nix

Fedimint uses Nix for building, CI, and managing dev environment. Note: only Nix (the language & package manager) and not the NixOS (the Linux distribution) is needed. Nix can be installed on any Linux distribution and macOS.

While it is technically possible to not use Nix, it is highly recommended as it ensures consistent and reproducible environment for all developers.

Install Nix

If you don't have it set up already, follow the instructions at: https://nixos.org/download.html

The end result is having a working nix command in your shell.

Example:

> nix --version
nix (Nix) 2.9.1

The exact version might be different.

Enable nix flakes

Edit either ~/.config/nix/nix.conf or /etc/nix/nix.conf and add:

experimental-features = nix-command flakes

If the Nix installation is in multi-user mode, don’t forget to restart the nix-daemon.

Use Nix Shell

If your Nix is set up properly nix develop started inside the project dir should just work (though it might take a while to download all the necessary files and build all the internal tooling). In the meantime you can read other documentation.

Using nix develop is strongly recommended. It takes care of setting up all the required developer automation, checks and ensures that all the developers and CI are in sync: working with same set of tools (exact versions).

You can still use your favorite IDE, Unix shell, and other personal utilities, but they MUST NOT be expected to be a requirements for other developers. In other words: if it's not automated and set up in nix develop shell, it doesn't exist from the team's perspective.

To use a different shell for nix develop, try nix develop -c zsh. You can alias it if don't want to remember about it. That's the recommended way to use a different shell for nix develop.

Preclude nix shell + tmux problems

Some of the scripts and examples in this repository make use of the tmux terminal multiplexer. However, by default a tmux instance launches a login shell, which can lead to unintended problems on certain operating systems (e.g. Debian)1. Especially, when tmux is launched within a nix shell, as needed for Running Fedimint for dev testing.

You can preclude these problems by forcing tmux to always use non-login shells. Create (or edit) a .tmux.conf in your home directory with the following line:

set -g default-command "${SHELL}"

Setting up direnv or lorri

One of the biggest QoL improvements you can do when working with flake-enabled projects is setting up one of:

The projects will set up your system's shell so that when you cd inside a given project they will automatically set up the environment for you, without starting any new shells. This way you can preserve your shell, and your settings while using nix develop-like shell automatically.

Cross-compilation

Dev environment comes with support for cross-compilation. However since most developers are not going use it while it requires heavy dependencies like Android NDK, it is only available in a separate Nix dev shell. To start it, use:

nix develop .#cross

Inside the shell cross-compilation commands like:

cargo build --target wasm32-unknown-unknown

should work as expected.

Containers

The flake.nix exposes OCI container builds of Fedimint (search for "container"). To use them try:

$ nix build .#container.fedimintd && docker load < ./result
Loaded image: fedimintd:iqviraxy2cz7apg7qamcp2mbsy7x7w8r

Change .#container.fedimintd to build a different container. The Loaded image: lists the image name that docker will use.

$ docker images | grep iqviraxy2cz7apg7qamcp2mbsy7x7w8r
fedimintd     iqviraxy2cz7apg7qamcp2mbsy7x7w8r      fad75f704001   52 years ago    68.6MB

You can start the binary(-ies) inside with the usual:

$ docker run -it fedimintd:iqviraxy2cz7apg7qamcp2mbsy7x7w8r fedimintd --help
Usage: fedimintd [OPTIONS] <DATA_DIR> [PASSWORD]

Arguments:
  <DATA_DIR>  Path to folder containing federation config files
  [PASSWORD]  Password to encrypt sensitive config files [env: FM_PASSWORD=]

Options:
      --listen-ui <LISTEN_UI>  Port to run admin UI on
  -h, --help                   Print help information

Most commands will require access to some host mounted volumes and port bindings. For your convenience, here is an example:

$ docker run -it -v $PWD/demo:/var/fedimint -p 17240:17240 fedimintd:iqviraxy2cz7apg7qamcp2mbsy7x7w8r configgen <command>

-v will mount local directory ./demo as /var/fedimint inside the container, so commands working on /var/fedimint write the files to the host file-system (e.g. config generation). -p is used to bind the host's port 17240 as the container's port 17240.

To generate federation configs and run the federation please see the run_dkg and start_federation helper functions in lib.sh, as well as the --help output of distributedgen and fedimintd. If you'd like to run function like run_dkg and start_federation from inside nix shell, run source scripts/build.sh and then source scripts/lib.sh and they will be available.

Note that you can also start a "fake" 1-of-1 "federation" that will allow you to test most aspects of Fedimint without having to run e.g. 4 instances.

Footnotes

  1. issues/506: scripts/tmuxinator.sh prerequisites and issues