Informed_Consent / entrypoint.sh
Mdean77's picture
Got rid of run command
e8c6562
raw
history blame
289 Bytes
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
echo "Qdrant is ready!"
# 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