mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-09-05 01:25:15 +03:00
Add .claude/ directory to .gitignore to prevent accidental commit of Claude Code settings which may contain sensitive API keys. This ensures development environment configuration files with potential credentials are excluded from version control.
73 lines
659 B
Plaintext
73 lines
659 B
Plaintext
*.py[cod]
|
|
__pycache__
|
|
.pytest_cache
|
|
|
|
#py.test
|
|
.cache
|
|
|
|
# environment file
|
|
.env
|
|
|
|
# hypothesis files
|
|
.hypothesis
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Packages
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
parts
|
|
var
|
|
sdist
|
|
develop-eggs
|
|
.installed.cfg
|
|
lib
|
|
lib64
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage reports
|
|
.coverage
|
|
.coverage*
|
|
.tox
|
|
.cache
|
|
nosetests.xml
|
|
|
|
# Translations
|
|
*.mo
|
|
|
|
# Mr Developer
|
|
.mr.developer.cfg
|
|
.project
|
|
.pydevproject
|
|
.settings
|
|
.vscode
|
|
|
|
# Pycharm
|
|
.idea
|
|
|
|
# Gedit Backup Files
|
|
*~
|
|
|
|
#Documentation build
|
|
docs/_build
|
|
|
|
#VPCS
|
|
vpcs.hist
|
|
startup.vpcs
|
|
.gns3_shell_history
|
|
|
|
# Virtualenv
|
|
env
|
|
venv
|
|
*venv
|
|
.ropeproject
|
|
|
|
# Claude Code settings (may contain API keys)
|
|
.claude/
|