mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
Update sidebar labels and add docker logs
This commit is contained in:
parent
bcb686a20d
commit
6236bc68e9
2 changed files with 4 additions and 4 deletions
|
|
@ -64,13 +64,13 @@ export default function Sidebar({ projectId, useRag, useAuth, collapsed = false,
|
|||
},
|
||||
...(useRag ? [{
|
||||
href: 'sources',
|
||||
label: 'Connect',
|
||||
label: 'RAG',
|
||||
icon: DatabaseIcon,
|
||||
requiresProject: true
|
||||
}] : []),
|
||||
{
|
||||
href: 'config',
|
||||
label: 'Integrate',
|
||||
label: 'Settings',
|
||||
icon: SettingsIcon,
|
||||
requiresProject: true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ services:
|
|||
build:
|
||||
context: ./apps/rowboat
|
||||
dockerfile: scripts.Dockerfile
|
||||
command: ["npm", "run", "setupQdrant"]
|
||||
command: ["sh", "-c", "npm run setupQdrant && echo 'index created successfully'"]
|
||||
profiles: [ "setup_qdrant" ]
|
||||
environment:
|
||||
- QDRANT_URL=${QDRANT_URL}
|
||||
|
|
@ -100,7 +100,7 @@ services:
|
|||
build:
|
||||
context: ./apps/rowboat
|
||||
dockerfile: scripts.Dockerfile
|
||||
command: ["npm", "run", "deleteQdrant"]
|
||||
command: ["sh", "-c", "npm run deleteQdrant && echo 'index deleted successfully'"]
|
||||
profiles: [ "delete_qdrant" ]
|
||||
environment:
|
||||
- QDRANT_URL=${QDRANT_URL}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue