long term evolution of sheepwave's what is a _ empty spaces site https://what.is.a.dolly.sh
  • Nix 92%
  • Gleam 8%
Find a file
2026-02-26 19:16:30 -08:00
.woodpecker init 2026-02-26 19:16:30 -08:00
src init 2026-02-26 19:16:30 -08:00
test init 2026-02-26 19:16:30 -08:00
.envrc init 2026-02-26 19:16:30 -08:00
.gitignore init 2026-02-26 19:16:30 -08:00
flake.lock init 2026-02-26 19:16:30 -08:00
flake.nix init 2026-02-26 19:16:30 -08:00
gleam.nix init 2026-02-26 19:16:30 -08:00
gleam.toml init 2026-02-26 19:16:30 -08:00
manifest.toml init 2026-02-26 19:16:30 -08:00
README.md init 2026-02-26 19:16:30 -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;
    # ...
  };
}