File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -250,10 +250,10 @@ def root() -> HTMLResponse:
250250 </header>
251251
252252 <main class="container hero">
253- <h1>Minimal, production-ready API starter .</h1>
253+ <h1>Auth-only backend .</h1>
254254 <p>
255- This service exposes health and auth helpers and includes task/project/bookmark modules
256- designed to mirror the existing Firebase payload shape in your web app .
255+ This service exposes health and authentication helpers. All tool data lives
256+ on the user's device — the desktop app stores it locally, so there are no CRUD endpoints here .
257257 </p>
258258
259259 <div class="actions">
@@ -264,15 +264,15 @@ def root() -> HTMLResponse:
264264 <div class="grid">
265265 <div class="card">
266266 <h3>Auth</h3>
267- <p>Verify Firebase ID tokens and fetch current user profile.</p>
267+ <p>Verify Firebase ID tokens and fetch the current user profile.</p>
268268 </div>
269269 <div class="card">
270- <h3>Tasks </h3>
271- <p>Paginated list, status updates, and export/import parity .</p>
270+ <h3>Passkeys </h3>
271+ <p>WebAuthn register/login and credential management .</p>
272272 </div>
273273 <div class="card">
274- <h3>Bookmarks </h3>
275- <p>Folders + bookmarks with upsert import and move/delete actions .</p>
274+ <h3>Health </h3>
275+ <p>Liveness probe at /api/v1/health .</p>
276276 </div>
277277 </div>
278278 </main>
Original file line number Diff line number Diff line change 11USERS = "users"
2- TASKS = "tasks"
3- PROJECTS = "projects"
4- BOOKMARKS = "bookmarks"
5- BOOKMARK_FOLDERS = "bookmark_folders"
6- PASSWORD_VAULTS = "password_Vaults"
7- PASSWORD_ENTRIES = "password_entries"
8- ENV_MANAGER_ENTRIES = "environment_manager_entries"
9- API_KEY_VAULT_ENTRIES = "api_key_vault_entries"
10- NOTES = "notes"
11- NOSQL_CONNECTIONS = "mongodb_connections"
12- USER_PREFERENCES = "user_preferences"
13- NOSQL_QUERY_HISTORY = "nosql_query_history"
14- API_CLIENT_COLLECTIONS = "api_client_collections"
15- API_CLIENT_ENVIRONMENTS = "api_client_environments"
16- API_CLIENT_HISTORY = "api_client_history"
17- API_CLIENT_PUBLIC_MOCKS = "api_client_public_mocks"
18- API_CLIENT_WORKSPACES = "api_client_workspaces"
19- JSON_FORMATTER_DOCUMENTS = "json_formatter_documents"
20- CODE_SNIPPETS = "code_snippets"
21- SQL_CONNECTIONS = "sql_connections"
22- S3_CONNECTIONS = "s3_connections"
23- FEEDBACK = "feedback"
24- REDIS_CONNECTIONS = "redis_connections"
252AUDIT_LOG = "audit_log"
263WEBAUTHN_CHALLENGES = "webauthn_challenges"
27- WORKSPACES = "workspaces"
28- WORKSPACE_MEMBERSHIPS = "workspace_memberships"
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments