No description
Find a file Use this template
2026-01-10 18:02:33 -08:00
.woodpecker use lix container 2026-01-10 12:42:53 -08:00
src init 2026-01-10 11:29:48 -08:00
test tests: flex purposely broken one 2026-01-10 13:26:15 -08:00
.envrc init 2026-01-10 11:29:48 -08:00
.gitignore fmt 2026-01-10 11:36:37 -08:00
flake.lock flake update 2026-01-10 18:02:33 -08:00
flake.nix flake update 2026-01-10 18:02:33 -08:00
gleam.nix init 2026-01-10 11:29:48 -08:00
gleam.toml precommit for statix + gleam check 2026-01-10 12:03:40 -08:00
manifest.toml init 2026-01-10 11:29:48 -08:00
README.md ci: add test runner since buildGleamApplication doesn't do this yet 2026-01-10 13:14:55 -08:00

miruku

a gleam project

developing

use nix; direnv supported

gleam run
gleam test
gleam check

# -- or --
nix run
nix run .#tests

# for all tests and formatters and other automatic stuff,
# including gleam, nix, and everything else.
nix fmt

deploying

{ inputs, ... }: {
  import = [
    inputs.miruku.nixosModules.default
  ];

  services.miruku = {
    enable = true;
    port = 3030;
    # ...
  };
}