mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-20 04:50:57 +02:00
Adding vscode run & debug config (#216)
Also adds `.env` to `.gitignore` files outside of the `deployment` dir
This commit is contained in:
parent
d5f172c292
commit
1a22666810
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.env
|
65
.vscode/launch.json
vendored
Normal file
65
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Danswer backend",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "uvicorn",
|
||||||
|
"cwd": "${workspaceFolder}/backend",
|
||||||
|
"env": {
|
||||||
|
"LOG_LEVEL": "DEBUG",
|
||||||
|
"DISABLE_AUTH": "True",
|
||||||
|
"TYPESENSE_API_KEY": "typesense_api_key",
|
||||||
|
"DYNAMIC_CONFIG_DIR_PATH": "./dynamic_config_storage",
|
||||||
|
},
|
||||||
|
"args": [
|
||||||
|
"danswer.main:app",
|
||||||
|
"--reload",
|
||||||
|
"--port",
|
||||||
|
"8080"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Danswer indexer",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "danswer/background/update.py",
|
||||||
|
"cwd": "${workspaceFolder}/backend",
|
||||||
|
"env": {
|
||||||
|
"LOG_LEVEL": "DEBUG",
|
||||||
|
"PYTHONPATH": ".",
|
||||||
|
"TYPESENSE_API_KEY": "typesense_api_key",
|
||||||
|
"DYNAMIC_CONFIG_DIR_PATH": "./dynamic_config_storage",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Danswer temp files deletion",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "danswer/background/file_deletion.py",
|
||||||
|
"cwd": "${workspaceFolder}/backend",
|
||||||
|
"env": {
|
||||||
|
"LOG_LEVEL": "DEBUG",
|
||||||
|
"PYTHONPATH": "${workspaceFolder}/backend",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// For the listner to access the Slack API,
|
||||||
|
// DANSWER_BOT_SLACK_APP_TOKEN & DANSWER_BOT_SLACK_BOT_TOKEN need to be set in .env file located in the root of the project
|
||||||
|
{
|
||||||
|
"name": "Danswer slack bot listener",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "danswer/listeners/slack_listener.py",
|
||||||
|
"cwd": "${workspaceFolder}/backend",
|
||||||
|
"envFile": "${workspaceFolder}/.env",
|
||||||
|
"env": {
|
||||||
|
"LOG_LEVEL": "DEBUG",
|
||||||
|
"PYTHONPATH": ".",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
1
backend/.gitignore
vendored
1
backend/.gitignore
vendored
@ -6,3 +6,4 @@ api_keys.py
|
|||||||
*ipynb
|
*ipynb
|
||||||
qdrant-data/
|
qdrant-data/
|
||||||
typesense-data/
|
typesense-data/
|
||||||
|
.env
|
Loading…
x
Reference in New Issue
Block a user