Skip to content

Commit 5bc8617

Browse files
committed
Update .gitignore to exclude node_modules and Python cache files
1 parent c737875 commit 5bc8617

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.gitignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,53 @@
11
models/*
22
!models/.gitignore
3+
4+
# Node.js
5+
node_modules/
6+
npm-debug.log
7+
yarn-debug.log
8+
yarn-error.log
9+
10+
# Python
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
*.so
15+
.Python
16+
env/
17+
build/
18+
develop-eggs/
19+
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
33+
# Logs
34+
*.log
35+
logs/
36+
log/
37+
38+
# Environments
39+
.env
40+
.venv
41+
env/
42+
venv/
43+
ENV/
44+
45+
# IDE and editors
46+
.idea/
47+
.vscode/
48+
*.swp
49+
*.swo
50+
*~
51+
52+
# Uploaded content
53+
uploaded_videos/

0 commit comments

Comments
 (0)