You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
705 B
45 lines
705 B
### SETUP
|
|
|
|
# INSTALL REQUIREMENTS
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install redis-server
|
|
pip install -r requirements.txt
|
|
|
|
# START REDIS
|
|
|
|
redis-cli -h localhost -p 6379 rpush to_interface ""
|
|
redis-cli -h localhost -p 6379 rpush to_core ""
|
|
|
|
|
|
### 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 |