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
2
#
3
3
# SPDX-License-Identifier: MIT
4
4
5
-
{ project }: {
5
+
{ project }:
6
+
{
6
7
services.postgresql = {
7
8
enable = true;
8
9
ensureDatabases = [ "plate" ];
···
13
14
}
14
15
];
15
16
};
16
-
17
+
17
18
virtualisation.oci-containers = {
18
19
backend = "podman";
19
20
containers.plate = {
···
35
36
];
36
37
};
37
38
};
38
-
39
+
39
40
services.nginx.enable = true;
40
-
services.nginx.virtualHosts."plate.thecoded.prof"= {
41
+
services.nginx.virtualHosts."plate.thecoded.prof" = {
41
42
addSSL = true;
42
43
enableACME = true;
43
44
acmeRoot = null;
···
49
50
};
50
51
};
51
52
}
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.