22 lines
477 B
Bash
22 lines
477 B
Bash
#!/bin/bash
|
|
|
|
# Install python dependencies
|
|
pip install -e ./api
|
|
|
|
# Install python bindings
|
|
pip install llama-cpp-python==0.1.62
|
|
|
|
# Start Redis instance
|
|
redis-server /etc/redis/redis.conf &
|
|
|
|
# Start the web server
|
|
cd web && npm run dev -- --host 0.0.0.0 --port 8008 &
|
|
|
|
# Start the API
|
|
cd api && uvicorn src.serge.main:api_app --reload --host 0.0.0.0 --port 9124 --root-path /api/ &
|
|
|
|
# Wait for any process to exit
|
|
wait -n
|
|
# Exit with status of process that exited first
|
|
exit $?
|