/ backend / .gitignore
.gitignore
 1  # Python
 2  __pycache__/
 3  *.py[cod]
 4  *$py.class
 5  *.so
 6  .Python
 7  env/
 8  venv/
 9  ENV/
10  build/
11  develop-eggs/
12  dist/
13  downloads/
14  eggs/
15  .eggs/
16  lib/
17  lib64/
18  parts/
19  sdist/
20  var/
21  wheels/
22  *.egg-info/
23  .installed.cfg
24  *.egg
25  
26  # Environment variables
27  .env
28  
29  # IDEs
30  .vscode/
31  .idea/
32  *.swp
33  *.swo
34  *~
35  
36  # OS
37  .DS_Store
38  Thumbs.db
39  
40  # Testing
41  .pytest_cache/
42  .coverage
43  htmlcov/
44  
45  # Logs
46  *.log
47