Update prodigy services

This commit is contained in:
Jeremy Dormitzer 2021-07-27 11:50:22 -04:00
parent 59c3155d46
commit 87f73d3768

View File

@ -263,13 +263,13 @@
(prodigy-define-service
:name "priceline-service"
:tags '(lola backend)
:command "~/lola/python_services/priceline/bin/start.sh"
:command "~/lola/python-services/priceline/bin/start.sh"
:args '("web-dev")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/priceline/.env"
:env-dir "~/lola/python_services"))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/priceline/.env"
:env-dir "~/lola/python-services"))
(prodigy-define-service
:name "priceline-cars-service"
@ -277,35 +277,35 @@
:command "bash"
:args '("-c"
"priceline_cars/bin/start.sh web-dev >> ~/lola/logs/priceline-cars.log 2>&1")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:inhibit-process-filter t
:file "~/lola/logs/priceline-cars.log"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/priceline_cars/.env"
:env-dir "~/lola/python_services"))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/priceline_cars/.env"
:env-dir "~/lola/python-services"))
(prodigy-define-service
:name "threev-service"
:tags '(lola backend)
:command "~/lola/python_services/threev/bin/start.sh"
:command "~/lola/python-services/threev/bin/start.sh"
:args '("web-dev")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/threev/.env"
:env-dir "~/lola/python_services"))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/threev/.env"
:env-dir "~/lola/python-services"))
(prodigy-define-service
:name "amd-flight-service"
:tags '(lola backend)
:command "~/lola/python_services/amd_flight/bin/start.sh"
:command "~/lola/python-services/amd_flight/bin/start.sh"
:args '("web-dev")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/amd_flight/.env"
:env-dir "~/lola/python_services"))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/amd_flight/.env"
:env-dir "~/lola/python-services"))
(prodigy-define-service
:name "ean-hotels-service"
@ -313,26 +313,26 @@
:command "bash"
:args '("-c"
"ean_hotels/bin/start.sh web-dev >> ~/lola/logs/ean-hotels.log 2>&1")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:inhibit-process-filter t
:file "~/lola/logs/ean-hotels.log"
:stop-signal 'kill
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/ean_hotels/.env"
:env-dir "~/lola/python_services"))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/ean_hotels/.env"
:env-dir "~/lola/python-services"))
(prodigy-define-service
:name "smp-hotels-service"
:command "bash"
:args '("-c"
"smp_hotels/bin/start.sh web >> ~/lola/logs/smp-hotels.log 2>&1")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:inhibit-process-filter t
:file "~/lola/logs/smp-hotels.log"
:stop-signal 'kill
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/smp_hotels/.env"
:env-dir "~/lola/python_services"))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/smp_hotels/.env"
:env-dir "~/lola/python-services"))
(prodigy-define-service
:name "email-template-service"
@ -360,12 +360,12 @@
(prodigy-define-service
:name "spend-service"
:tags '(lola backend)
:command "~/lola/python_services/spend/bin/start.sh"
:command "~/lola/python-services/spend/bin/start.sh"
:args '("web-dev")
:cwd "~/lola/python_services"
:cwd "~/lola/python-services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
"~/lola/python_services/spend/.env"
:env-dir "~/lola/python_services")))
:init-async (python-service-setup "~/lola/python-services/.venv"
"~/lola/python-services/spend/.env"
:env-dir "~/lola/python-services")))
(provide 'init-prodigy)