LEM-Eval / systemd /lem-eval.service
Snider
feat: add systemd service + timer, replaces cron watchdog
816b02a
raw
history blame contribute delete
464 Bytes
[Unit]
Description=LEM-Eval continuous worker
After=network-online.target ollama.service
Wants=network-online.target
[Service]
Type=simple
User=lemmy
WorkingDirectory=/home/lemmy/PycharmProjects/LEM-Eval
Environment=LEM_NAMES=lemer
Environment=LEM_TYPES=gguf
Environment=PATH=/home/lemmy/.local/bin:/usr/local/bin:/usr/bin:/bin
ExecStart=/home/lemmy/PycharmProjects/LEM-Eval/lem-eval.sh loop
Restart=on-failure
RestartSec=30
[Install]
WantedBy=multi-user.target