-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (69 loc) · 1.66 KB
/
Copy path.gitignore
File metadata and controls
83 lines (69 loc) · 1.66 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
# Dependencies
/node_modules
server/node_modules
# Production
/build
# Mintlify dev wrapper staging dir (scripts/dev-docs.mjs)
/.mintlify-dev
# Ignore dist except for released schemas, compliance, protocol tarballs, and docs
/dist/*
!/dist/schemas
!/dist/compliance
!/dist/protocol
!/dist/docs
/dist/schemas/latest
/dist/schemas/v*
/dist/schemas/registry.*
/dist/schemas/*.js
/dist/schemas/*.js.map
/dist/schemas/*.d.ts
/dist/schemas/*.d.ts.map
/dist/compliance/latest
/dist/compliance/v*
/dist/protocol/latest.tgz
/dist/protocol/latest.tgz.sha256
/dist/protocol/latest.tgz.sig
/dist/protocol/latest.tgz.crt
# Generated files
.docusaurus
.cache-loader
*.tsbuildinfo
.codex/
.claude/scheduled_tasks.lock
# Misc
.DS_Store
cookies.txt
.conductor_port
.env.local
.env.development.local
.env.test.local
.env.production.local
.tool-versions
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pre-push
.idea/
# Test cache
tests/.tested-files.json
tests/temp-snippet-*
coverage/
.env
# Addie external repo cache
.addie-repos/
# Generated skill schemas (built from dist/schemas)
skills/*/schemas/
# Stripe webhook secret (dynamically generated)
.stripe-webhook-secret
.stripe-key
test-results/
tests/screenshots/
# C2PA test fixtures — generated at test time, not committed.
server/tests/fixtures/c2pa/*.pem
# Pre-push hook leftovers — `.husky/pre-push` moves `dist/docs` (etc.) to
# `/tmp/.prepush-<name>-<pid>` before running Mintlify broken-links, then
# restores. If the restore lands in the wrong place (interrupted script,
# stale runs across worktrees), the temp dir can show up inside the source
# tree. Always-ignore so they don't pollute `git status`.
.prepush-*/
dist/docs/.prepush-*/