forked from blakeblackshear/frigate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'blakeblackshear:dev' into testing
- Loading branch information
Showing
68 changed files
with
15,367 additions
and
7,015 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/bash | ||
|
||
set -euxo pipefail | ||
|
||
SQLITE_VEC_VERSION="0.1.3" | ||
|
||
cp /etc/apt/sources.list /etc/apt/sources.list.d/sources-src.list | ||
sed -i 's|deb http|deb-src http|g' /etc/apt/sources.list.d/sources-src.list | ||
apt-get update | ||
apt-get -yqq build-dep sqlite3 gettext git | ||
|
||
mkdir /tmp/sqlite_vec | ||
# Grab the sqlite_vec source code. | ||
wget -nv https://github.com/asg017/sqlite-vec/archive/refs/tags/v${SQLITE_VEC_VERSION}.tar.gz | ||
tar -zxf v${SQLITE_VEC_VERSION}.tar.gz -C /tmp/sqlite_vec | ||
|
||
cd /tmp/sqlite_vec/sqlite-vec-${SQLITE_VEC_VERSION} | ||
|
||
mkdir -p vendor | ||
wget -O sqlite-amalgamation.zip https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip | ||
unzip sqlite-amalgamation.zip | ||
mv sqlite-amalgamation-3450300/* vendor/ | ||
rmdir sqlite-amalgamation-3450300 | ||
rm sqlite-amalgamation.zip | ||
|
||
# build loadable module | ||
make loadable | ||
|
||
# install it | ||
cp dist/vec0.* /usr/local/lib | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
docker/main/rootfs/etc/s6-overlay/s6-rc.d/chroma-log/consumer-for
This file was deleted.
Oops, something went wrong.
Empty file removed
0
docker/main/rootfs/etc/s6-overlay/s6-rc.d/chroma-log/dependencies.d/log-prepare
Empty file.
1 change: 0 additions & 1 deletion
1
docker/main/rootfs/etc/s6-overlay/s6-rc.d/chroma-log/pipeline-name
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
docker/main/rootfs/usr/local/semantic_search/get_search_settings.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# Website | ||
|
||
This website is built using [Docusaurus 2](https://v2.docusaurus.io/), a modern static website generator. | ||
This website is built using [Docusaurus 3.5](https://docusaurus.io/docs), a modern static website generator. | ||
|
||
For installation and contributing instructions, please follow the [Contributing Docs](https://docs.frigate.video/development/contributing). | ||
|
||
# Development | ||
|
||
1. Run `npm i` to install dependencies | ||
2. Run `npm run start` to start the website |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.