Add agent-console prodigy service

This commit is contained in:
Jeremy Dormitzer 2020-02-11 10:58:18 -05:00
parent f616ec6cac
commit 883805b9ba

View File

@ -4467,6 +4467,19 @@ Some functions to make my day job easier.
:env '(("PORT" "3000"))
:init-async #'call-with-lola-env)
(prodigy-define-service
:name "agent-console"
:tags '(lola frontend)
:command "npm"
:args '("start")
:cwd "~/lola/agent-console"
:stop-signal 'int
:env '(("PORT" "3002"))
:init-async (lambda (done)
(call-with-lola-env
(lambda ()
(nvm-use "v10.15.1" done)))))
(prodigy-define-service
:name "luigid"
:command "luigid"