mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
* fix: formatting * build: AppImage release * chore: add x86_64 in file name * chore: appimage issues fix * chore: remove chmod * build: appimage on ubuntu 20.04 * fix: formatting * build: AppImage release * chore: add x86_64 in file name * chore: appimage issues fix * chore: remove chmod * build: appimage on ubuntu 20.04 * include web ui * fix: linux build * fix: use UI files within appimage instead of copying * chore: cleanup
6 lines
160 B
Bash
6 lines
160 B
Bash
#!/bin/bash
|
|
|
|
APPDIR="$(dirname "$(readlink -f "$0")")"
|
|
export QDRANT__SERVICE__STATIC_CONTENT_DIR="$APPDIR/usr/share/static"
|
|
exec "$APPDIR/usr/bin/qdrant" "$@"
|