Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 347 Bytes
38a3c61 |
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 |
# Ignore environment files
.env
# Ignore Python cache files
__pycache__/
*.py[cod]
# Ignore Docker files
*.log
*.tmp
# Ignore system files
.DS_Store
Thumbs.db
# Ignore IDE/editor specific files
.vscode/
.idea/
*.sublime-workspace
*.sublime-project
# Ignore node_modules if using Node.js
node_modules/
# Ignore build directories
dist/
build/
|