Plate is a WIP time management application I'm writing and self hosting
npins/sources.json
npins/sources.json
This file has not been changed.
+5
-5
packetmix/systems/teal/plate.nix
+5
-5
packetmix/systems/teal/plate.nix
···
2
#
3
# SPDX-License-Identifier: MIT
4
5
-
{ project }: {
6
services.postgresql = {
7
enable = true;
8
ensureDatabases = [ "plate" ];
···
13
}
14
];
15
};
16
-
17
virtualisation.oci-containers = {
18
backend = "podman";
19
containers.plate = {
···
35
];
36
};
37
};
38
-
39
services.nginx.enable = true;
40
-
services.nginx.virtualHosts."plate.thecoded.prof"= {
41
addSSL = true;
42
enableACME = true;
43
acmeRoot = null;
···
49
};
50
};
51
}
52
-
···
2
#
3
# SPDX-License-Identifier: MIT
4
5
+
{ project }:
6
+
{
7
services.postgresql = {
8
enable = true;
9
ensureDatabases = [ "plate" ];
···
14
}
15
];
16
};
17
+
18
virtualisation.oci-containers = {
19
backend = "podman";
20
containers.plate = {
···
36
];
37
};
38
};
39
+
40
services.nginx.enable = true;
41
+
services.nginx.virtualHosts."plate.thecoded.prof" = {
42
addSSL = true;
43
enableACME = true;
44
acmeRoot = null;
···
50
};
51
};
52
}
History
2 rounds
1 comment
thecoded.prof
submitted
#1
1 commit
expand
collapse
feat: run plate
1/5 failed, 4/5 success
expand
collapse
expand 1 comment
pull request successfully merged
thecoded.prof
submitted
#0
1 commit
expand
collapse
feat: run plate
Build from previous round succeeded and only change this round was formatting & copyright info, merging anyways.