Skip to content
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ tmp/
*.backup
*~

# Patch files
patches/

# Documentation and Reports
docs/
Docs/
Expand Down
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
{
"sqltools.connections": [
{
"previewLimit": 50,
"driver": "SQLite",
"database": "backend/braindrive.db",
"name": "BrainDrive",
"group": "BrainDrive"
}
],
"sqltools.useNodeRuntime": true
}
1 change: 1 addition & 0 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ BrainDrive Backend is the engine behind the BrainDrive application—a modular,

* 🔒 JWT-based authentication with refresh tokens
* 👤 User registration, login, and profile management
* 🔄 User updaters run automatically after each login
* ⚙️ Dynamic settings system with multi-tier support
* 🤖 Modular plugin system with automatic discovery
* 📚 AI provider registry and switching support
Expand Down
2 changes: 2 additions & 0 deletions backend/app/api/v1/api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from fastapi import APIRouter
from app.api.v1.endpoints import auth, settings, ollama, ai_providers, ai_provider_settings, navigation_routes, components, conversations, tags
from app.routers import plugins
from app.routes.pages import router as pages_router

api_router = APIRouter(prefix="/api/v1")
api_router.include_router(auth.router, tags=["auth"])
Expand All @@ -14,3 +15,4 @@
api_router.include_router(tags.router, tags=["tags"])
# Include the plugins router with a prefix
api_router.include_router(plugins.router, tags=["plugins"])
api_router.include_router(pages_router)
Loading