open source is social v-it.org
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add .gitignore for Python project and sensitive files

- Ignore .venv and other virtual environments
- Ignore Python build artifacts and cache files
- Ignore plc_keys/ directory containing private keys

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+30
+30
.gitignore
··· 1 + # Virtual environments 2 + .venv 3 + venv/ 4 + ENV/ 5 + env/ 6 + 7 + # Python 8 + __pycache__/ 9 + *.py[cod] 10 + *$py.class 11 + *.so 12 + .Python 13 + build/ 14 + develop-eggs/ 15 + dist/ 16 + downloads/ 17 + eggs/ 18 + .eggs/ 19 + lib/ 20 + lib64/ 21 + parts/ 22 + sdist/ 23 + var/ 24 + wheels/ 25 + *.egg-info/ 26 + .installed.cfg 27 + *.egg 28 + 29 + # PLC keys and artifacts 30 + plc_keys/