Simplify boardwise systemd config.
parent
498aa3b51e
commit
ec676fbfbe
|
@ -208,7 +208,7 @@
|
|||
},
|
||||
"locked": {
|
||||
"lastModified": 1,
|
||||
"narHash": "sha256-Gze86YwZxMbiW01weBEoPXyNEdAuj+hBTtT/shr/wSo=",
|
||||
"narHash": "sha256-12GAm+zOFk5V1yHAV/LeBvV/kLqE9Cz9WeCSEZbimxQ=",
|
||||
"path": "./phobos",
|
||||
"type": "path"
|
||||
},
|
||||
|
|
|
@ -38,32 +38,20 @@
|
|||
'';
|
||||
};
|
||||
|
||||
systemd = {
|
||||
services.boardwise = {
|
||||
enable = true;
|
||||
description = "BoardWise Server";
|
||||
after = [ "postgresql.service" ];
|
||||
requires = [ "postgresql.service" ];
|
||||
serviceConfig = {
|
||||
Environment = [
|
||||
"PORT=80"
|
||||
"DATABASE_URL=ecto://postgres:postgres@localhost/boardwise"
|
||||
];
|
||||
EnvironmentFile = "/run/secrets/SECRET_KEY_BASE";
|
||||
ExecStartPre = "${boardwise.packages.${system}.app}/bin/migrate";
|
||||
ExecStart = "${boardwise.packages.${system}.app}/bin/boardwise start";
|
||||
Restart = "on-failure";
|
||||
};
|
||||
unitConfig = {
|
||||
ConditionPathExists = "/run/secrets/SECRET_KEY_BASE";
|
||||
};
|
||||
};
|
||||
paths.SECRET_KEY_BASE = {
|
||||
enable = true;
|
||||
pathConfig = {
|
||||
PathExists = "/run/secrets/SECRET_KEY_BASE";
|
||||
Unit = "boardwise.service";
|
||||
};
|
||||
systemd.services.boardwise = {
|
||||
enable = true;
|
||||
description = "BoardWise Server";
|
||||
after = [ "postgresql.service" ];
|
||||
requires = [ "postgresql.service" ];
|
||||
serviceConfig = {
|
||||
Environment = [
|
||||
"PORT=80"
|
||||
"DATABASE_URL=ecto://postgres:postgres@localhost/boardwise"
|
||||
];
|
||||
EnvironmentFile = "/run/secrets/SECRET_KEY_BASE";
|
||||
ExecStartPre = "${boardwise.packages.${system}.app}/bin/migrate";
|
||||
ExecStart = "${boardwise.packages.${system}.app}/bin/boardwise start";
|
||||
Restart = "on-failure";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue