a template starter repo for sveltekit projects
0

Configure Feed

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

suede / .gitignore
753 B 46 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# Claude-Code-specific artifacts (not part of this OpenCode-primary project) 39CLAUDE.md 40.claude/ 41 42# .opencode workspace (pnpm-managed; its own internal .gitignore handles 43# workspace-level rules but git only reads the root .gitignore) 44.opencode/node_modules 45.opencode/package.json 46.opencode/package-lock.json