Merge pull request #7 from shivenmian/osxscript
feat: added OSX start script
This commit is contained in:
commit
c5590871a6
|
@ -7,4 +7,4 @@ fastapi
|
||||||
uvicorn
|
uvicorn
|
||||||
websockets
|
websockets
|
||||||
python-dotenv
|
python-dotenv
|
||||||
ffmpeg-python
|
ffmpeg-python
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
### SETUP
|
||||||
|
|
||||||
|
# INSTALL REQUIREMENTS
|
||||||
|
|
||||||
|
brew update
|
||||||
|
brew install portaudio ffmpeg
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
### CORE
|
||||||
|
|
||||||
|
# START KERNEL WATCHER
|
||||||
|
|
||||||
|
python core/kernel_watcher.py &
|
||||||
|
|
||||||
|
# START SST AND TTS SERVICES
|
||||||
|
|
||||||
|
# (todo)
|
||||||
|
# (i think we should start with hosted services)
|
||||||
|
|
||||||
|
# START LLM
|
||||||
|
|
||||||
|
# (disabled, we'll start with hosted services)
|
||||||
|
# python core/llm/start.py &
|
||||||
|
|
||||||
|
# START CORE
|
||||||
|
|
||||||
|
python core/start_core.py &
|
||||||
|
|
||||||
|
|
||||||
|
### INTERFACE
|
||||||
|
|
||||||
|
# START INTERFACE
|
||||||
|
|
||||||
|
python interface/interface.py &
|
||||||
|
|
||||||
|
# START DISPLAY
|
||||||
|
|
||||||
|
# (this should be changed to run it in fullscreen / kiosk mode)
|
||||||
|
open interface/display.html
|
Loading…
Reference in New Issue