Mercurial > code > home > repos > light9
changeset 2149:cce16500f747
faster startup of all vite tools
author | drewp@bigasterisk.com |
---|---|
date | Wed, 17 May 2023 19:24:29 -0700 |
parents | 2973ec5df7e4 |
children | e13b62bfdaff |
files | bin/ascoltami bin/collector bin/effectListing bin/effectSequencer bin/fade bin/live bin/rdfdb bin/timeline |
diffstat | 8 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/bin/ascoltami Wed May 17 19:09:01 2023 -0700 +++ b/bin/ascoltami Wed May 17 19:24:29 2023 -0700 @@ -1,4 +1,4 @@ #!/bin/zsh -pnpx vite -c light9/ascoltami/vite.config.ts & +pnpm exec vite -c light9/ascoltami/vite.config.ts & PYTHONPATH=`pwd` pdm run python light9/ascoltami/main.py wait
--- a/bin/collector Wed May 17 19:09:01 2023 -0700 +++ b/bin/collector Wed May 17 19:24:29 2023 -0700 @@ -1,5 +1,5 @@ #!/bin/sh -pnpx vite -c light9/collector/web/vite.config.ts & +pnpm exec vite -c light9/collector/web/vite.config.ts & pdm run uvicorn light9.collector.service:app --host 0.0.0.0 --port 8202 --no-access-log wait
--- a/bin/effectListing Wed May 17 19:09:01 2023 -0700 +++ b/bin/effectListing Wed May 17 19:24:29 2023 -0700 @@ -1,4 +1,4 @@ #!/bin/sh -pnpx vite -c light9/effect/listing/web/vite.config.ts & +pnpm exec vite -c light9/effect/listing/web/vite.config.ts & wait
--- a/bin/effectSequencer Wed May 17 19:09:01 2023 -0700 +++ b/bin/effectSequencer Wed May 17 19:24:29 2023 -0700 @@ -1,5 +1,5 @@ #!/bin/sh -pnpx vite -c light9/effect/sequencer/web/vite.config.ts & +pnpm exec vite -c light9/effect/sequencer/web/vite.config.ts & pdm run uvicorn light9.effect.sequencer.service:app --host 0.0.0.0 --port 8213 --no-access-log --reload wait
--- a/bin/fade Wed May 17 19:09:01 2023 -0700 +++ b/bin/fade Wed May 17 19:24:29 2023 -0700 @@ -1,4 +1,4 @@ #!/bin/sh -pnpx vite -c light9/fade/web/vite.config.ts & +pnpm exec vite -c light9/fade/web/vite.config.ts & wait
--- a/bin/live Wed May 17 19:09:01 2023 -0700 +++ b/bin/live Wed May 17 19:24:29 2023 -0700 @@ -1,3 +1,3 @@ #!/bin/zsh -pnpx vite -c light9/web/live/vite.config.ts & +pnpm exec vite -c light9/web/live/vite.config.ts & wait