Informed_Consent / entrypoint.sh
Mdean77's picture
Cleaning up spaces
7a8992f
raw
history blame
260 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..."
uv run chainlit run app.py --host 0.0.0.0 --port 7860