Spaces:
Runtime error
Runtime error
File size: 438 Bytes
de234b1 |
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 28 29 30 31 32 33 34 35 36 37 |
# .dockerignore
# Ignore all log files and directories
*.log
*/__pycache__/
*.pyc
*.pyo
*.pyd
# Ignore all credential files
*.pem
*.p12
*.crt
*.key
# Ignore git files
.git
.gitignore
# Ignore build artifacts, cache files and test scripts
build/
*cache/
tests/
cache.db
# Ignore MacOS system files
.DS_Store
# Ignore Python virtual environments
venv/
*.venv
.env
# Ignore node/npm files
node_modules/
npm-debug.log
package-lock.json
|