No description
Find a file
noe 6115d52132
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
add nakai
2026-01-10 22:49:05 -08:00
.woodpecker ci: cleanup 2026-01-10 22:24:13 -08:00
src add nakai 2026-01-10 22:49:05 -08:00
test add homepage stuffs 2026-01-10 20:19:50 -08:00
.envrc some more flake tism 2026-01-10 21:15:12 -08:00
.gitignore some more flake tism 2026-01-10 21:15:12 -08:00
flake.lock flake update 2026-01-10 18:02:33 -08:00
flake.nix some more flake tism 2026-01-10 21:15:12 -08:00
gleam.nix add homepage stuffs 2026-01-10 20:19:50 -08:00
gleam.toml add nakai 2026-01-10 22:49:05 -08:00
manifest.toml add nakai 2026-01-10 22:49:05 -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;
    # ...
  };
}