blob: 86b5f21fb74d2c7cfbd590335e3a517feb612b8b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(define hrdp-project
(make <service>
#:provides '(hrdp-project)
#:docstring "Run the hrdp-project web server"
#:start (make-forkexec-constructor
'("/home/shepherd/run_hrdp-project.sh")
#:log-file "/home/shepherd/logs/hrdp-project.log")
#:stop (make-kill-destructor)
#:respawn? #t))
(register-services hrdp-project)
(start hrdp-project)
|