We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcf5694 commit 94ff1a8Copy full SHA for 94ff1a8
2 files changed
.gitignore
@@ -0,0 +1,4 @@
1
+.qdrant-initialized
2
+.venv/
3
+storage/
4
+
db/qdrant/launch_qdrant.sh
@@ -1,4 +1,8 @@
#!/bin/bash
-# Launch Qdrant as a standalone server without telemetry
-./qdrant --disable-telemetry
+# Get the absolute path to the script directory
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
5
6
+# Launch Qdrant binary from the same directory as the script
7
+"$SCRIPT_DIR/qdrant" --disable-telemetry
8
0 commit comments