From 87f73d37684fc5b2ad3eb8d989677bd5f6a4c8ca Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Tue, 27 Jul 2021 11:50:22 -0400 Subject: [PATCH] Update prodigy services --- emacs/.emacs.d/config/init-prodigy.el | 64 +++++++++++++-------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/emacs/.emacs.d/config/init-prodigy.el b/emacs/.emacs.d/config/init-prodigy.el index 12f9a8d..cf5b7a3 100644 --- a/emacs/.emacs.d/config/init-prodigy.el +++ b/emacs/.emacs.d/config/init-prodigy.el @@ -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)