-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Docker support #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Docker support #34
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
49cf247
Updates for Linux for frontend/server
frasergr f7bb447
Merge pull request #1 from frasergr/linux-frontend-and-server
frasergr a94942c
frontend/server docker
frasergr be8ab58
Merge pull request #2 from frasergr/linux-frontend-and-server
frasergr 95508bc
updated Dockerfile for deps related to node vectordb
frasergr 26382bb
Merge pull request #3 from frasergr/linux-frontend-and-server
frasergr e3ef5cd
updates for collector in docker
frasergr ebf7b02
Merge pull request #4 from frasergr/linux-frontend-and-server
frasergr 425a645
docker deps for ODT processing
frasergr 48348a6
Merge pull request #5 from frasergr/linux-frontend-and-server
frasergr 561f870
ignore another collector dir
frasergr 6098d4d
Merge pull request #6 from frasergr/linux-frontend-and-server
frasergr 4f66382
Merge pull request #7 from frasergr/master
frasergr 829fe87
storage mount improvements; run as UID
frasergr 44db58b
Merge branch 'master' into 26-docker
frasergr 7040504
fix pypandoc version typo
frasergr 4e242a3
permissions fixes
frasergr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,13 @@ | ||
| server/storage/documents/** | ||
| server/storage/vector-cache/** | ||
| server/storage/*.db | ||
| server/storage/lancedb | ||
| collector/hotdir/** | ||
| collector/v-env/** | ||
| collector/outputs/** | ||
| **/node_modules/ | ||
| **/dist/ | ||
| **/v-env/ | ||
| **/__pycache__/ | ||
| **/.env | ||
| **/.env.* |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -5,6 +5,5 @@ v-env | |
| node_modules | ||
| __pycache__ | ||
| v-env | ||
| *.lock | ||
| .DS_Store | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,25 @@ | ||
| SERVER_PORT=3001 | ||
| OPEN_AI_KEY= | ||
| OPEN_MODEL_PREF='gpt-3.5-turbo' | ||
| CACHE_VECTORS="true" | ||
|
|
||
| # Enable all below if you are using vector database: Chroma. | ||
| # VECTOR_DB="chroma" | ||
| # CHROMA_ENDPOINT='http://localhost:8000' | ||
|
|
||
| # Enable all below if you are using vector database: Pinecone. | ||
| VECTOR_DB="pinecone" | ||
| PINECONE_ENVIRONMENT= | ||
| PINECONE_API_KEY= | ||
| PINECONE_INDEX= | ||
|
|
||
| # Enable all below if you are using vector database: LanceDB. | ||
| # VECTOR_DB="lancedb" | ||
|
|
||
| # CLOUD DEPLOYMENT VARIRABLES ONLY | ||
| # AUTH_TOKEN="hunter2" # This is the password to your application if remote hosting. | ||
| # JWT_SECRET="my-random-string-for-seeding" # Only needed if AUTH_TOKEN is set. Please generate random string at least 12 chars long. | ||
| STORAGE_DIR="./server/storage" | ||
| GOOGLE_APIS_KEY= | ||
| UID='1000' | ||
| GID='1000' |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.