Spaces:
Runtime error
Runtime error
File size: 250 Bytes
2edf2fb 778e9cd 2edf2fb b121930 8bb1c53 0e54e32 ca66c69 2edf2fb c13b298 2edf2fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Start Qdrant in the background
echo "Starting Qdrant server..."
/qdrant/qdrant &
whoami
pwd
ls -la
# Run my chainlit app using uv
echo "Starting Chainlit application..."
~/app/uv run chainlit run app.py --host 0.0.0.0 --port 7860
|