about summary refs log tree commit diff
path: root/nixos/tests/web-apps/nextjs-ollama-llm-ui.nix
blob: 3bb9d1e62aefe3ac0dcde64bd7470bf7ec156201 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, ... }:

{
  name = "nextjs-ollama-llm-ui";
  meta.maintainers = with lib.maintainers; [ malteneuss ];

  nodes.machine =
    { pkgs, ... }:
    {
      services.nextjs-ollama-llm-ui = {
        enable = true;
        port = 8080;
      };
    };

  testScript = ''
    # Ensure the service is started and reachable
    machine.wait_for_unit("nextjs-ollama-llm-ui.service")
    machine.wait_for_open_port(8080)
    machine.succeed("curl --fail http://127.0.0.1:8080")
  '';
}