mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
27 lines
750 B
Nix
27 lines
750 B
Nix
import ./make-test-python.nix ({ lib, pkgs, ... }: {
|
|
name = "firefly-iii";
|
|
meta.maintainers = [ lib.maintainers.savyajha ];
|
|
|
|
nodes.machine = { config, ... }: {
|
|
environment.etc = {
|
|
"firefly-iii-appkey".text = "TestTestTestTestTestTestTestTest";
|
|
};
|
|
services.firefly-iii = {
|
|
enable = true;
|
|
virtualHost = "http://localhost";
|
|
enableNginx = true;
|
|
settings = {
|
|
APP_KEY_FILE = "/etc/firefly-iii-appkey";
|
|
LOG_CHANNEL = "stdout";
|
|
SITE_OWNER = "mail@example.com";
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("phpfpm-firefly-iii.service")
|
|
machine.wait_for_unit("nginx.service")
|
|
machine.succeed("curl -fvvv -Ls http://localhost/ | grep 'Firefly III'")
|
|
'';
|
|
})
|