Install languagetool (with todos / questions)

Right now I've a custom service in
~/.config/systemd/user/languagetool-server.service:

    [Unit]
    Description=LanguateTool Server

    StartLimitBurst=3
    StartLimitInterval=400

    [Service]
    Restart=on-failure
    RestartSec=2s

    ; This should work, but doesn't seem to work: https://www.freedesktop.org/software/systemd/man/systemd.resource-control.html
    ; Maybe due to legacy control group hierarchy version 1?
    ; MemoryMax=3%
    Environment="JAVA_TOOL_OPTIONS=-Xmx256m"
    ExecStart=/home/daniels/.nix-profile/bin/languagetool-http-server --port 8081 --allow-origin "*"

    [Install]
    WantedBy=default.target

Unsure how I can generate the service file.
This commit is contained in:
Daniel Siepmann 2022-02-01 09:16:58 +01:00
parent d011e4db3e
commit f4ed3f064f
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -12,6 +12,9 @@ self: super: {
self.litecli
self.mkcert
# Writing
self.languagetool
# Media
self.vlc
];