| # ============================================ | |
| # Hugging Face Model Repository - .gitignore | |
| # AIEXX GenAI Image to 3D | |
| # ============================================ | |
| # ============================================ | |
| # SECURITY & CREDENTIALS (NEVER COMMIT!) | |
| # ============================================ | |
| .env | |
| .env.local | |
| .env.*.local | |
| *.token | |
| *_token.txt | |
| hf_token* | |
| huggingface_token* | |
| *api_key* | |
| *apikey* | |
| *.key | |
| *.pem | |
| *.cert | |
| *.p12 | |
| credentials.json | |
| auth.json | |
| secrets.json | |
| # ============================================ | |
| # Python | |
| # ============================================ | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| # ============================================ | |
| # Virtual Environments (DO NOT COMMIT) | |
| # ============================================ | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| env/ | |
| .venv*/ | |
| *.venv | |
| # ============================================ | |
| # IDE & Editors | |
| # ============================================ | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # ============================================ | |
| # Logs & Temporary Files | |
| # ============================================ | |
| *.log | |
| *.tmp | |
| *.temp | |
| *.bak | |
| *.backup | |
| *.old | |
| *.orig | |
| logs/ | |
| log/ | |
| # ============================================ | |
| # Build & Distribution | |
| # ============================================ | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| node_modules/ | |
| # ============================================ | |
| # Git | |
| # ============================================ | |
| .git/ | |
| # ============================================ | |
| # IMPORTANT: FILES TO COMMIT (NOT IGNORED) | |
| # ============================================ | |
| # The following file types WILL be committed: | |
| # - *.safetensors (model weights - via LFS) | |
| # - *.bin (model weights - via LFS) | |
| # - *.ckpt (model checkpoints - via LFS) | |
| # - *.pt, *.pth (PyTorch models - via LFS) | |
| # - *.glb, *.gltf (3D models - via LFS) | |
| # - *.obj, *.fbx (3D models - via LFS) | |
| # - *.json (configuration files) | |
| # - *.yaml, *.yml (workflow files) | |
| # - *.py (Python scripts) | |
| # - *.md (documentation) | |
| # - *.txt (text files) | |
| # - *.png, *.jpg, *.jpeg (example images) | |
| # ============================================ | |
| # End of .gitignore | |
| # ============================================ | |