Skip to content

Commit 061ded1

Browse files
committed
added gitigntoer
1 parent a737715 commit 061ded1

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
Python specific
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Virtual environments
24+
venv/
25+
ENV/
26+
env/
27+
venv*/
28+
.env
29+
.env.local
30+
.env.*.local
31+
32+
# IDE/Editor
33+
.vscode/
34+
.idea/
35+
*.swp
36+
*.swo
37+
*.sublime-workspace
38+
*.sublime-project
39+
40+
# Testing
41+
.coverage
42+
htmlcov/
43+
.pytest_cache/
44+
.mypy_cache/
45+
46+
# Logs and databases
47+
*.log
48+
*.sqlite3
49+
*.db
50+
*.sql
51+
52+
# OS generated
53+
.DS_Store
54+
.DS_Store?
55+
._*
56+
.Spotlight-V100
57+
.Trashes
58+
ehthumbs.db
59+
Thumbs.db
60+
61+
# Project specific
62+
/media/
63+
/static/
64+
*.env
65+
*.env.prod
66+
*.env.dev

0 commit comments

Comments
 (0)