-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (74 loc) · 1.13 KB
/
.gitignore
File metadata and controls
89 lines (74 loc) · 1.13 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
# Dependencies
node_modules/
.pnp
.pnp.js
# Build outputs
dist/
dist-electron/
.vite/
release/
*.tsbuildinfo
# Python
backend/.venv/
backend/__pycache__/
backend/**/__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so
*.egg
*.egg-info/
.eggs/
# Claude Code
.claude/*
!.claude/
!.claude/skills/
!.claude/skills/video-editor-development/
!.claude/skills/video-editor-development/SKILL.md
# IDE
.idea/
.vscode/*
!.vscode/launch.json
!.vscode/tasks.json
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
Desktop.ini
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment
.env
.env.local
.env.*.local
# Testing
coverage/
.nyc_output/
# Misc
*.local
.cache/
# Models (too large for git - auto-downloaded on first run)
# Keep the README but ignore all model files
models/*
!models/README.md
backend/models/
# Profiling scripts and results
backend/scripts/
backend/profile_results/
# Temporary working directory
backend/tmp/
# Generated outputs (videos and images)
backend/outputs/*.mp4
backend/outputs/*.png
backend/generated/
# Build artifacts
release/
python-embed/
# Downloaded during CI for Windows NSIS installer
resources/vc_redist.x64.exe