chore: Add .spaceignore to exclude dev files from Space
Browse filesExcludes test scripts, documentation, and development files from Space deployment while keeping them in the local repository. This reduces Space size and keeps deployment clean.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
- .spaceignore +62 -0
.spaceignore
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# HuggingFace Space Ignore File
|
| 2 |
+
# Files listed here will NOT be uploaded to the Space
|
| 3 |
+
# This keeps your Space deployment clean while keeping files locally
|
| 4 |
+
|
| 5 |
+
# Test Scripts
|
| 6 |
+
test_*.py
|
| 7 |
+
monitor_build.py
|
| 8 |
+
|
| 9 |
+
# Documentation Files (keep only README.md)
|
| 10 |
+
DEPLOYMENT.md
|
| 11 |
+
IMPLEMENTATION_SUMMARY.md
|
| 12 |
+
LAYOUT_EXPORT_GUIDE.md
|
| 13 |
+
MCP_DEPLOYMENT_GUIDE.md
|
| 14 |
+
PROJECT_PLAN.md
|
| 15 |
+
SESSION_LOGS.md
|
| 16 |
+
SMART_COLLABORATION_GUIDE.md
|
| 17 |
+
API_SPECIFICATION.md
|
| 18 |
+
MCP_COMPREHENSIVE_GUIDE.md
|
| 19 |
+
IMPLEMENTATION_STATUS.md
|
| 20 |
+
MCP_IMAGE_SPEC.md
|
| 21 |
+
CLAUDE_DESKTOP_SETUP.md
|
| 22 |
+
|
| 23 |
+
# Test Response Files
|
| 24 |
+
mcp_response.json
|
| 25 |
+
|
| 26 |
+
# Git files (HuggingFace manages its own git)
|
| 27 |
+
.git/
|
| 28 |
+
.gitignore
|
| 29 |
+
|
| 30 |
+
# Local development
|
| 31 |
+
.vscode/
|
| 32 |
+
.idea/
|
| 33 |
+
*.local
|
| 34 |
+
.env.local
|
| 35 |
+
.env.*.local
|
| 36 |
+
|
| 37 |
+
# OS files
|
| 38 |
+
.DS_Store
|
| 39 |
+
Thumbs.db
|
| 40 |
+
desktop.ini
|
| 41 |
+
|
| 42 |
+
# Logs
|
| 43 |
+
*.log
|
| 44 |
+
npm-debug.log*
|
| 45 |
+
yarn-debug.log*
|
| 46 |
+
yarn-error.log*
|
| 47 |
+
pnpm-debug.log*
|
| 48 |
+
|
| 49 |
+
# Editor backups
|
| 50 |
+
*~
|
| 51 |
+
*.swp
|
| 52 |
+
*.swo
|
| 53 |
+
|
| 54 |
+
# Python cache (not needed in deployment)
|
| 55 |
+
__pycache__/
|
| 56 |
+
*.pyc
|
| 57 |
+
*.pyo
|
| 58 |
+
*.pyd
|
| 59 |
+
.Python
|
| 60 |
+
|
| 61 |
+
# Node modules (will be installed during build)
|
| 62 |
+
node_modules/
|