Skip to content

Commit af43f81

Browse files
Updated gitignore
1 parent 1045ac4 commit af43f81

1 file changed

Lines changed: 54 additions & 0 deletions

File tree

.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,55 @@
1+
# Environment and local configuration
12
.env
3+
.venv/
4+
env/
5+
venv/
6+
ENV/
7+
.python-version
8+
.env.local
9+
.env.development.local
10+
.env.test.local
11+
.env.production.local
12+
13+
# Python artifacts
14+
__pycache__/
15+
*.py[cod]
16+
*$py.class
17+
*.so
18+
.Python
19+
build/
20+
develop-eggs/
21+
dist/
22+
downloads/
23+
eggs/
24+
.eggs/
25+
lib/
26+
lib64/
27+
parts/
28+
sdist/
29+
var/
30+
wheels/
31+
*.egg-info/
32+
.installed.cfg
33+
*.egg
34+
35+
# Testing
36+
.pytest_cache/
37+
.coverage
38+
htmlcov/
39+
.tox/
40+
.nox/
41+
coverage.xml
42+
*.cover
43+
*.py,cover
44+
.hypothesis/
45+
46+
# IDE settings
47+
.idea/
48+
.vscode/
49+
*.swp
50+
*.swo
51+
.DS_Store
52+
.vs/
53+
54+
# Jupyter Notebook
55+
.ipynb_checkpoints

0 commit comments

Comments
 (0)