-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.vercelignore
More file actions
47 lines (41 loc) · 1.01 KB
/
.vercelignore
File metadata and controls
47 lines (41 loc) · 1.01 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
# ============================================================
# .vercelignore — Exclude files not needed for Vercel builds
# This reduces upload size and speeds up deployments.
# ============================================================
# Dev-only scripts (never invoked by Vercel)
bin/setup.sh
bin/stop.sh
bin/services-start.sh
bin/local-dev.sh
bin/kafka-setup.sh
bin/health-check.sh
bin/health-monitor.sh
bin/start.sh
bin/db-reset.sh
bin/db-migrate.sh
bin/db-seed.sh
bin/db-setup.sh
bin/setup-db-simple.sh
bin/smoke.sh
# Docker (not used in Vercel serverless builds)
docker/
# Local dev artifacts
logs/
.pids
.naap.lock
.prisma-synced
*.log
# Plugin backends (Vercel only builds frontends + Next.js)
plugins/*/backend/
examples/*/backend/
# Test files
**/*.test.ts
**/*.test.tsx
**/*.spec.ts
**/__tests__/
# Top-level documentation files (not needed for build).
# IMPORTANT: Use anchored patterns (leading /) to avoid excluding
# apps/web-next/src/content/docs/ which contains MDX page content.
/docs/
/*.md
!README.md