Spaces:
Build error
Build error
Gouzi Mohaled
commited on
Commit
·
a515fda
1
Parent(s):
d8435ba
Ajout du dossier pkg
Browse files- pkg/appimage/AppRun.sh +5 -0
- pkg/appimage/qdrant.desktop +13 -0
pkg/appimage/AppRun.sh
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
APPDIR="$(dirname "$(readlink -f "$0")")"
|
4 |
+
export QDRANT__SERVICE__STATIC_CONTENT_DIR="$APPDIR/usr/share/static"
|
5 |
+
exec "$APPDIR/usr/bin/qdrant" "$@"
|
pkg/appimage/qdrant.desktop
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[Desktop Entry]
|
2 |
+
Name=qdrant
|
3 |
+
GenericName=Vector Database
|
4 |
+
Comment=Advanced and High-Performant Vector Search Technology
|
5 |
+
TryExec=qdrant
|
6 |
+
Exec=qdrant %F
|
7 |
+
Terminal=true
|
8 |
+
Type=Application
|
9 |
+
Keywords=Database;
|
10 |
+
Icon=qdrant
|
11 |
+
Categories=Utility;
|
12 |
+
StartupNotify=false
|
13 |
+
|