Initial code commit
This commit is contained in:
115
.gitignore
vendored
Normal file
115
.gitignore
vendored
Normal file
@@ -0,0 +1,115 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
*.egg
|
||||
*.whl
|
||||
|
||||
# Virtual Environment
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
.venv/
|
||||
|
||||
# PyInstaller
|
||||
*.spec
|
||||
!smb_prowl.spec
|
||||
*.manifest
|
||||
|
||||
# Testing
|
||||
test_*.py
|
||||
*_test.py
|
||||
test_*.yaml
|
||||
test_*.yml
|
||||
test_*.png
|
||||
test_*.jpg
|
||||
test_*.jpeg
|
||||
test_*.gif
|
||||
*.log
|
||||
*.tmp
|
||||
|
||||
# Checkpoint and backup files
|
||||
*_checkpoint.*
|
||||
*.bak
|
||||
*.backup
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS-specific files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
*.code-workspace
|
||||
*.iml
|
||||
|
||||
# Secrets and credentials
|
||||
*.key
|
||||
*.pem
|
||||
*.p12
|
||||
*.pfx
|
||||
*.crt
|
||||
*.cert
|
||||
*.secret
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
secrets.yaml
|
||||
secrets.yml
|
||||
config.local.*
|
||||
*credentials*
|
||||
*password*
|
||||
*secret*
|
||||
|
||||
# Logs and output files
|
||||
*.log
|
||||
*.out
|
||||
smb_prowl*.log
|
||||
downloads/
|
||||
downloads_*/
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Coverage reports
|
||||
.coverage
|
||||
htmlcov/
|
||||
.pytest_cache/
|
||||
.tox/
|
||||
.hypothesis/
|
||||
|
||||
# Jupyter Notebook
|
||||
.ipynb_checkpoints
|
||||
|
||||
# pyenv
|
||||
.python-version
|
||||
|
||||
# mypy
|
||||
.mypy_cache/
|
||||
.dmypy.json
|
||||
dmypy.json
|
||||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# Project-specific
|
||||
hooks/__pycache__/
|
||||
Reference in New Issue
Block a user