a template starter repo for sveltekit projects
0

Configure Feed

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

suede / .gitignore
970 B 51 lines
1node_modules 2 3# Output 4.output 5.vercel 6.netlify 7.wrangler 8/.svelte-kit 9/build 10 11# OS 12.DS_Store 13Thumbs.db 14 15# Env 16.env 17.env.* 18!.env.example 19!.env.test 20 21# Vite 22vite.config.js.timestamp-* 23vite.config.ts.timestamp-* 24 25# Cloudflare / Wrangler (generated) 26worker-configuration.d.ts 27.wrangler 28 29*storybook.log 30storybook-static 31 32# Deciduous database (local) 33.deciduous/ 34 35# Deciduous exported web viewer (regenerated per machine via `deciduous sync`) 36docs/ 37 38# Plan files are per-task scratchpads; the compiled form (graph nodes + 39# task note Decisions section) is what persists. Handoff is the tool 40# for resuming work across machines, not the plan file. 41agent-notes/plans/ 42 43# Claude-Code-specific artifacts (not part of this OpenCode-primary project) 44CLAUDE.md 45.claude/ 46 47# .opencode workspace (pnpm-managed; its own internal .gitignore handles 48# workspace-level rules but git only reads the root .gitignore) 49.opencode/node_modules 50.opencode/package.json 51.opencode/package-lock.json