Windows
Note
The preferred method of installation method is using Docker.
- Download the zip file from releases.
- Extract the zip file into
C:\example\directory
. - Edit appsettings.json. The paths from this json file correspond with the docker env vars, as described here.
- Execute
cleanuperr.exe
.
Note
Run as a Windows Service
- Download latest nssm build from
https://nssm.cc/builds
. - Unzip
nssm.exe
inC:\example\directory
. - Open a terminal with Administrator rights and execute these commands:
nssm.exe install Cleanuperr "C:\example\directory\cleanuperr.exe"
nssm.exe set Cleanuperr AppDirectory "C:\example\directory\"
nssm.exe set Cleanuperr AppStdout "C:\example\directory\cleanuperr.log"
nssm.exe set Cleanuperr AppStderr "C:\example\directory\cleanuperr.crash.log"
nssm.exe set Cleanuperr AppRotateFiles 1
nssm.exe set Cleanuperr AppRotateOnline 1
nssm.exe set Cleanuperr AppRotateBytes 10485760
nssm.exe set Cleanuperr AppRotateFiles 10
nssm.exe set Cleanuperr Start SERVICE_AUTO_START
nssm.exe start Cleanuperr