fastnBefore you can use fastn you'll need to get it installed.
fastn is compatible with various operating systems, including Windows, MacOS,
and Linux. Based on your machine and your choice of installation, you can
select one of the following options:fastn using the installer script. You can do this by
running the below command in your terminal. This is the preferred method.sh -c "$(curl -fsSL https://fastn.com/install.sh)"
fastn through pre-built binary
(Recommended)fastn from sourcefastn through fastn installer:
fastn.com/setup.exe. This is the preferred method
as it only requires downloading the setup and installing it on your local system.fastn without installing:nix run github:fastn-stack/fastn
{
description = "A very basic flake";
inputs.fastn.url = "github:fastn-stack/fastn";
outputs = { self, nixpkgs, fastn }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
name = "my-fastn-shell";
buildInputs = [ fastn.defaultPackage.${system} ];
};
};
}
