-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (58 loc) · 2.3 KB
/
Copy path.gitignore
File metadata and controls
66 lines (58 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# v0 sandbox internal files
__v0_runtime_loader.js
__v0_devtools.tsx
__v0_jsx-dev-runtime.ts
.snowflake/
.v0-trash/
.vercel/
# Environment variables. The previous `.env*.local` missed a plain `.env`, which
# is the file people actually put a real AUTH_SECRET in. Ignore the lot and
# re-include the tracked template.
.env
.env.*
!.env.example
# Generated: tsc writes .tsbuildinfo for each typecheck project, and next build
# regenerates next-env.d.ts. Committing either produces stale-cache confusion
# and diff noise.
*.tsbuildinfo
next-env.d.ts
# Build output.
#
# `.next*/` rather than the two names that happen to exist today. The Next build
# directory is chosen at *runtime* by FORUM_DIST_DIR — `.next` for `pnpm dev`,
# `.next-e2e` for the Playwright server, and whatever a developer passes to run a
# second server beside their own. Listing them individually means the next value
# anybody uses is untracked-but-not-ignored, which is how a hundred megabytes of
# compiled chunks arrive in a `git add -A`.
#
# `dist/` at any depth, not just `apps/worker/dist/`: the CLI declares a
# `dist/index.js` bin and every package can be built the same way.
.next*/
dist/
.turbo/
coverage/
# `forum-web`/`community` (apps/community/bin, apps/cli/bin) materialize their
# app into `.meith/` inside whichever workspace invokes them — boards/stock,
# or any board outside this repository. Rebuilt every run, never a merge
# target. See docs/contributing/development.md, "Consuming the board from a workspace".
.meith/
# Test artefacts. `test-results/` is Playwright's per-run output (traces,
# screenshots, videos of failures) and can be large.
playwright-report/
blob-report/
test-results/
# A local board's uploads — UPLOADS_DIR, `.uploads` by default, with
# FILESTORE_DRIVER=local. Member content rather than source, and the one thing
# here that would be a disclosure rather than merely noise.
.uploads/
# Common ignores
node_modules
.DS_Store
# Claude Code's per-repository directory. `.claude/*` rather than `.claude/`,
# because git cannot re-include a file whose parent directory is excluded — and
# settings.json and hooks/ are the guardrails every session in this repository
# loads, so they have to be tracked. Worktrees and personal overrides are not.
.claude/*
!.claude/settings.json
!.claude/hooks/
.claude/settings.local.json