Informed_Consent / entrypoint.sh
Mdean77's picture
Trying another approach
a52f107
raw
history blame
472 Bytes
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
# Wait for Qdrant to be ready
# echo "Waiting for Qdrant to be ready..."
# until curl -s http://localhost:6333/health | grep '"status":"ok"'; do
# sleep 1
# done
echo "Qdrant is ready!"
chmod +x /root/.local/bin/uv
# Start Chainlit application using Uvicorn
echo "Starting Chainlit application..."
/root/.local/bin/uv run chainlit run app.py --host 0.0.0.0 --port 7860