Spaces:
Sleeping
Sleeping
File size: 249 Bytes
e53c2d7 4f1adfd e53c2d7 4f1adfd e53c2d7 4f1adfd |
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/env sh
# 1) start Qdrant with the new snapshot‐flag
qdrant --storage-snapshot /mnt/data/qdrant &
# 2) give Qdrant a second to spin up
sleep 2
# 3) start your Python entrypoint (which itself calls uvicorn.run)
exec python -m app.main
|