No description
Find a file
2026-01-12 00:49:15 -08:00
.woodpecker code! 2026-01-11 18:36:45 -08:00
birdie_snapshots this shit work :> 2026-01-11 20:12:19 -08:00
examples this shit work :> 2026-01-11 20:12:19 -08:00
src/sketch_nakai code! 2026-01-11 18:36:45 -08:00
test hmmm 2026-01-11 22:14:46 -08:00
.envrc Initial commit 2026-01-11 17:45:07 +00:00
.gitignore ignore new birdie snaps 2026-01-11 20:13:20 -08:00
flake.lock flake update 2026-01-12 00:49:15 -08:00
flake.nix flake update 2026-01-12 00:49:15 -08:00
gleam.nix code! 2026-01-11 18:36:45 -08:00
gleam.toml nix: fix source filters to be closer to hex packages 2026-01-11 23:44:38 -08:00
manifest.toml hmmm 2026-01-11 22:14:46 -08:00
README.md Initial commit 2026-01-11 17:45:07 +00: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;
    # ...
  };
}