Changeset - 3a2e58725037
[Not reviewed]
default
0 3 0
drewp@bigasterisk.com - 8 months ago 2024-05-13 02:56:25
drewp@bigasterisk.com
make bin/* match
3 files changed with 4 insertions and 6 deletions:
0 comments (0 inline, 0 general)
bin/ascoltami
Show inline comments
 
#!/bin/zsh
 
pdm run uvicorn light9.ascoltami.main:app --host 0.0.0.0 --port 8206 --no-access-log
 
exec pdm run uvicorn light9.ascoltami.main:app --port 8206 --no-access-log
bin/collector
Show inline comments
 
#!/bin/sh
 
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
 
#!/bin/zsh
 
exec pdm run uvicorn light9.collector.service:app --port 8202 --no-access-log
 

	
bin/rdfdb
Show inline comments
 
#!/bin/zsh
 
exec pdm run uvicorn --port 8209 light9.rdfdb.service:app --no-access-log
 
exec pdm run uvicorn light9.rdfdb.service:app --port 8209 --no-access-log
0 comments (0 inline, 0 general)