mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-06 07:26:43 -04:00
cd65a0785d
Fixes #4582 Templates created via `spacetime init` were missing `.gitignore` files, causing build artifacts like `node_modules`, `target/`, `bin/`, `obj/`, `dist/`, `.next/`, etc. to show up in git diffs when users initialize a project inside a git repository. Adds `.gitignore` files to the 15 templates that were missing one: | Template | Ignores | |----------|---------| | Node/TS (`basic-ts`, `browser-ts`, `bun-ts`, `chat-react-ts`, `deno-ts`, `nodejs-ts`, `react-ts`, `vue-ts`) | `node_modules`, `dist`, `*.log` | | Next.js (`nextjs-ts`) | `node_modules`, `.next`, `out`, `dist`, `*.log` | | Svelte (`svelte-ts`) | `node_modules`, `dist`, `.svelte-kit`, `*.log` | | Rust (`basic-rs`, `chat-console-rs`) | `target` | | C# (`basic-cs`, `chat-console-cs`) | `bin`, `obj` | | C++ (`basic-cpp`) | `target`, `build` | All files also include `spacetime.local.json` and `.DS_Store`. The 5 templates that already had `.gitignore` files (`angular-ts`, `keynote-2`, `nuxt-ts`, `remix-ts`, `tanstack-ts`) are left unchanged. Co-authored-by: clockwork-labs-bot <clockwork-labs-bot@users.noreply.github.com>
7 lines
41 B
Plaintext
7 lines
41 B
Plaintext
bin
|
|
obj
|
|
|
|
.DS_Store
|
|
|
|
spacetime.local.json
|