Informed_Consent / entrypoint.sh
Mdean77's picture
trying sudo
722a5e9
raw
history blame
370 Bytes
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
sudo mkdir -p /home/user/.local/bin
echo "Qdrant is ready!"
curl -LsSf https://astral.sh/uv/install.sh | sh
# Start Chainlit application using Uvicorn
echo "Starting Chainlit application..."
echo "Current path: $PATH"
uv run chainlit run app.py --host 0.0.0.0 --port 7860