-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy path.vercelignore
More file actions
100 lines (84 loc) · 1.39 KB
/
Copy path.vercelignore
File metadata and controls
100 lines (84 loc) · 1.39 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
# Python backend (deployed separately to Google Cloud Run)
python_backend/
*.py
*.pyc
__pycache__/
venv/
.env
# IMPORTANT: bin/ directory is NOT ignored - it contains yt-dlp binary for serverless deployment
# Development files
.git/
.gitignore
node_modules/
.next/
.cache/
/temp/
/cache/
# Explicitly include src/services/cache (these are needed for build)
!src/services/cache/
# Documentation (exclude markdown files but keep API docs page)
*.md
demo_*.png
# Note: docs/ directory is NOT ignored - it contains the API documentation page
# Build artifacts
.tsbuildinfo
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# IDE files
.vscode/
.idea/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Docker files (not needed for Vercel)
Dockerfile*
docker-compose*.yml
cloudbuild.yaml
# Scripts (excluding prepare scripts needed for build)
scripts/*.sh
scripts/export-cookies.js
# Test files
test_*.py
test_*.html
*.test.js
*.test.ts
# Large files (except metronome sounds)
*.mp4
*.wav
*.mp3
*.ogg
*.flac
*.avi
*.mov
*.mkv
*.webm
bfg.jar
# Allow metronome audio files for Vercel deployment
!public/audio/metronome/
!public/audio/metronome/*.wav
# GitHub Actions
.github/
# Additional exclusions
*.tsbuildinfo
.env.local
.env.development
.env.production
.env.test
.env.*.local
tsconfig.tsbuildinfo
.eslintcache
.stylelintcache
# Backup files
*.bak
*.backup
*.old
*.orig
# Temporary files
*.tmp
*.temp
/temp/
/tmp/