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
5 changes: 2 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ This is a **single SvelteKit application** (not a monorepo).
├── e2e/ # Playwright E2E tests
├── static/ # Static assets
├── docker/Dockerfile # Production container image
├── CLAUDE.md # AI assistant instructions
└── TECH_DEBT.md # Known tech debt and deferred security concerns
└── CLAUDE.md # AI assistant instructions
```

## Tech Debt

When introducing shortcuts, known issues, or deferred security work, add an entry to `TECH_DEBT.md`. Keep entries concise: what the issue is, why it is acceptable now, and what the correct long-term fix is.
When introducing shortcuts, known issues, or deferred security work, file an issue with the `tech-debt` label. Keep it concise: what the issue is, why it is acceptable now, and what the correct long-term fix is.

## Development Guidelines

Expand Down
151 changes: 0 additions & 151 deletions TECH_DEBT.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/lib/storage/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Note: The response body is buffered as a Blob before the download link is
* constructed. This avoids exposing credentials in the URL (query-param approach)
* while keeping the implementation simple. For very large files this will use
* proportional browser memory — see TECH_DEBT.md for the long-term fix.
* proportional browser memory.
*/

import { STORAGE_CONNECTION_HEADER } from '$lib/storage/connection-storage.js';
Expand Down
1 change: 0 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export default defineConfig({
strategy: ['cookie', 'preferredLanguage', 'baseLocale']
})
],
server: { allowedHosts: true },
test: {
coverage: {
provider: 'v8',
Expand Down