AppView in a box as a Vite plugin thing hatk.dev
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: remove DuckDB memory/thread limits to baseline natural usage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+1 -4
+1 -4
packages/hatk/src/db.ts
··· 123 123 tableSchemas: TableSchema[], 124 124 ddlStatements: string[], 125 125 ): Promise<void> { 126 - instance = await DuckDBInstance.create(dbPath === ':memory:' ? undefined : dbPath, { 127 - memory_limit: '256MB', 128 - threads: '1', 129 - }) 126 + instance = await DuckDBInstance.create(dbPath === ':memory:' ? undefined : dbPath) 130 127 con = await instance.connect() 131 128 readCon = await instance.connect() 132 129