-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
156 lines (140 loc) · 3.46 KB
/
Copy path.gitignore
File metadata and controls
156 lines (140 loc) · 3.46 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# =============================================================================
# Vector — .gitignore
# Stack: Next.js (App Router) + TypeScript · Neon/Postgres · viem/wagmi ·
# Solidity (ERC-8004) via Hardhat/Foundry · CLI rails
# =============================================================================
# ----- Dependencies ----------------------------------------------------------
# Match both a node_modules directory and a stray node_modules symlink/file
# (a trailing-slash pattern ignores only directories).
node_modules
node_modules/
.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
jspm_packages/
bower_components/
# ----- Package manager logs / caches -----------------------------------------
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.pnpm-store/
.npm/
.yarn-integrity
# ----- Environment & secrets -------------------------------------------------
# Never commit real secrets (DB URLs, RPC keys, private keys, API keys).
.env
.env.*
!.env.example
!.env.sample
*.local
.envrc
# Wallet / chain secrets
*.pem
*.key
*.keystore
secrets.json
mnemonic.txt
.secret
# ----- Next.js ---------------------------------------------------------------
.next/
out/
build/
dist/
.vercel/
next-env.d.ts
*.tsbuildinfo
# ----- TypeScript / build artifacts ------------------------------------------
*.tsbuildinfo
.tscache/
# ----- Testing & coverage ----------------------------------------------------
coverage/
.nyc_output/
playwright-report/
playwright/.cache/
test-results/
blob-report/
.vitest/
junit.xml
# ----- Linters / formatters / tooling caches ---------------------------------
.eslintcache
.stylelintcache
.prettiercache
.cache/
.turbo/
.swc/
# ----- Smart contracts (ERC-8004: Hardhat / Foundry) -------------------------
# Hardhat
artifacts/
cache/
typechain/
typechain-types/
deployments/localhost/
# Foundry
forge-cache/
broadcast/
# Keep deploy receipts you intend to track by un-ignoring explicitly above.
# ----- Database / Neon / Postgres --------------------------------------------
*.sqlite
*.sqlite3
*.db
pgdata/
*.dump
*.sql.bak
.drizzle/
drizzle/meta/_journal.json.bak
prisma/*.db
prisma/migrations/dev/
# ----- Logs & runtime --------------------------------------------------------
logs/
*.log
pids/
*.pid
*.seed
*.pid.lock
# ----- Storybook -------------------------------------------------------------
storybook-static/
# ----- Editors / IDE ---------------------------------------------------------
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
!.vscode/launch.json
.idea/
*.iml
*.swp
*.swo
*~
.history/
# ----- OS files --------------------------------------------------------------
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
Desktop.ini
# ----- Misc temp -------------------------------------------------------------
tmp/
temp/
*.tmp
*.bak
*.orig
# =============================================================================
# Project-specific (review before keeping)
# -----------------------------------------------------------------------------
# NOTE: the Vector prompt-set treats docs/*.md (e.g. docs/onboarding.md) as
# COMMITTED deliverable artifacts. If you keep the line below, those handwritten
# docs will be ignored. Prefer ignoring only GENERATED docs instead, e.g.:
# docs/_generated/
# docs/api/
# Ignore only GENERATED docs; handwritten docs/*.md are committed deliverables.
docs/_generated/
docs/.vitepress/cache/
docs/.vitepress/dist/
.vercel