Spaces:
Sleeping
Sleeping
File size: 331 Bytes
fef9918 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# Ignore Python cache files
__pycache__/
*.pyc
*.pyo
# Ignore virtual environments
venv/
env/
.venv/
# Ignore version control system directories
.git/
.gitignore
# Ignore Docker-related files
Dockerfile
.dockerignore
# Ignore IDE/editor-specific files
.vscode/
.idea/
# Ignore any additional temporary files
*.tmp
*.log
*.swp
|