Spaces:
Sleeping
Sleeping
| # Version control | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Node.js dependencies | |
| viewer/node_modules | |
| node_modules | |
| # Build files | |
| viewer/dist | |
| viewer/build | |
| dist | |
| build | |
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log | |
| yarn-debug.log | |
| yarn-error.log | |
| # Environment files (except public ones) | |
| .env | |
| .env.* | |
| !viewer/.env.public | |
| # Editor directories and files | |
| .vscode | |
| .idea | |
| *.suo | |
| *.ntvs* | |
| *.njsproj | |
| *.sln | |
| *.sw? | |
| # OS specific files | |
| .DS_Store | |
| **/.DS_Store | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # Docker files | |
| Dockerfile | |
| .dockerignore | |
| # Urdf files and STLs (if you don't need them in the image) | |
| *.STL | |
| *.stl | |
| # Tests | |
| **/__tests__ | |
| **/*.test.* | |
| **/*.spec.* | |
| # Documentation | |
| *.md | |
| README.md | |
| LICENSE | |
| # Other unnecessary files | |
| *.zip | |
| *.tar.gz |