Informed_Consent / entrypoint.sh
Mdean77's picture
Added some echo statements
778e9cd
raw
history blame
504 Bytes
#!/bin/bash
echo "Current directory: $(pwd)"
echo "Current path: $PATH"
directory="../root/.local/bin"
if [ -d "$directory" ];
then
echo "Directory exists: $directory"
echo "Files in $directory:"
find "$directory" -type f
else
echo "Directory does not exist: $directory"
fi
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
# Run my chainlit app using uv
echo "Starting Chainlit application..."
uv run chainlit run app.py --host 0.0.0.0 --port 7860