Skip to content
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

Incorporate data snapshots #31

Merged
merged 9 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ SECRET_MANAGER_TYPE=file
# in case of file/vault secret manager, we must specify the directory
SECRET_MANAGER_DIRECTORY=/secrets

# Knowledge base snapshots directory
SNAPSHOTS_DIRECTORY=/snapshots

# Collects telemetry to our PostHog. Change to false if you don't want to send telemetry.
TELEMETRY_ENABLED=true

Expand Down Expand Up @@ -116,6 +119,10 @@ API_URL=${ENVOY_URL}/api
DATA_PROCESSOR_PORT=3002
DATA_PROCESSOR_URL=${ENVOY_URL}/data-processor

# Doc indexer
DOC_INDEXER_PORT=3005
DOC_INDEXER_URL=${ENVOY_URL}/doc-indexer

# Slackbot
SLACKBOT_PORT=3003

Expand Down
8 changes: 8 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,14 @@
"cwd": "${workspaceFolder}/services/data-processor/",
"justMyCode": false
},
{
"type": "debugpy",
"name": "Doc Indexer: Debug",
"request": "launch",
"program": "src/main.py",
"cwd": "${workspaceFolder}/services/doc-indexer/",
"justMyCode": false
},
{
"type": "debugpy",
"name": "Log Parser: Debug",
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib",
"python.envFile": ""
"python.envFile": "",
"python.defaultInterpreterPath": "/Users/dudulasry/Library/Caches/pypoetry/virtualenvs/data-processor-qzgB1a2g-py3.10/bin/python"
}
Loading
Loading