No description
| .woodpecker | ||
| src | ||
| test | ||
| .envrc | ||
| .gitignore | ||
| flake.lock | ||
| flake.nix | ||
| gleam.nix | ||
| gleam.toml | ||
| manifest.toml | ||
| README.md | ||
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;
# ...
};
}