all repos — mycal @ 926b9a2e84ca23d92ae96c191fb3643cc76860df

private calendar anonymiser

replace flask and gunicorn with quart and uvicorn

Alan Pearce
commit

926b9a2e84ca23d92ae96c191fb3643cc76860df

parent

0e13c16fb8006abd463c59579ff3aac3384d2a4c

1 file changed, 4 insertions(+), 3 deletions(-)

changed files
M flake.nixflake.nix
@@ -244,9 +244,10 @@ };
serviceConfig = { ExecStart = '' - ${cfg.venv}/bin/gunicorn \ - --bind ${cfg.host}:${toString cfg.port} \ - --workers 1 \ + ${cfg.venv}/bin/uvicorn \ + --host ${cfg.host} \ + --port ${toString cfg.port} \ + --ws none \ mycal:app ''; Restart = "on-failure";