-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
102 lines (82 loc) · 2.94 KB
/
Copy path.gitignore
File metadata and controls
102 lines (82 loc) · 2.94 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
## .NET
bin/
obj/
TestResults/
*.user
## IDE
.vs/
*.suo
.idea/
*.DotSettings.user
## macOS
.DS_Store
._*
## Windows
Thumbs.db
Desktop.ini
## Linux
*~
## Logs and coverage
*.log
coverage/
## Local CodeQL databases and SARIF output (`eng/ci/codeql.sh`).
artifacts/
## Dapr local secrets (not committed)
eng/dapr/secrets.json
## Deployment env file (not committed; keep spring.env.example only)
eng/config/spring.env
## Repo-local dispatcher publish output. `eng/deploy/spring-voyage-host.sh`
## publishes the spring-dispatcher binary here on `start`/`build` so that
## `discover_binary` has a stable, config- and TFM-agnostic path to run from
## (see PUBLISH_DIR_DEFAULT in the host script). Operators can redirect with
## SPRING_DISPATCHER_PUBLISH_DIR; in either case the artifact is local to the
## working tree and must not be committed. Mirrors the operator-facing
## ~/.spring-voyage/ namespace (state, workspaces).
.spring-voyage/
## Generated client code — re-emitted from the committed OpenAPI
## contract on every `dotnet build` (CLI Kiota tree) and every
## `npm run generate-api` (web TypeScript schema). Source of truth is
## `src/Cvoya.Spring.Host.Api/openapi.json`, which IS committed.
src/Cvoya.Spring.Cli/Generated/
src/Cvoya.Spring.Web/src/lib/api/schema.d.ts
## Consumer-facing per-endpoint API reference rendered by `@redocly/cli`
## from the committed OpenAPI contract via
## `npm --workspace=spring-voyage-dashboard run generate-api-docs`.
## Treated like the other generated codegen artefacts above — produced
## from `openapi.json`, never hand-edited, not committed. CI builds it
## on every change to the spec and uploads it as a workflow artifact so
## external consumers can fetch the rendered HTML without a local build.
docs/api/v1.html
## Python
__pycache__/
*.pyc
.pytest_cache/
.ruff_cache/
*.egg-info/
## npm workspace hoisted dependencies — the root package.json is a
## workspaces-only manifest (see #198) and `npm install` at the repo
## root materialises node_modules (and .next/.turbo caches) here.
node_modules/
.next/
## ESLint cache — `npm run lint` writes it at the repo root when
## invoked there. The per-workspace cache is already ignored by the
## workspace's own .gitignore.
.eslintcache
## Playwright artifacts (e2e smoke tests under src/Cvoya.Spring.Web/e2e).
## `playwright-report/` is the HTML reporter output, `test-results/` is
## per-test traces/screenshots/videos retained on failure.
playwright-report/
test-results/
## Lighthouse CI artifacts (web-lighthouse job in CI).
.lighthouseci/
## Claude Code working dirs (parallel subagent worktrees, agent state).
.claude/worktrees/
## Codex / shared agent worktrees. Each task should get its own worktree,
## but those checkouts are local coordination state, not repo content.
.worktrees/
# CodeGraph data files — these are local to each machine and should not be committed.
.codegraph/
# new vs code cache files
*.lscache
.claude/scheduled_tasks.lock
.claude/scheduled_tasks.json