- Updated stablediffusion crate path from "../stable-diffusion-burn" to "./crates/stable-diffusion-burn" for proper workspace resolution - Enhanced .gitignore to include generated model files (.mpk, .pt, .bin, .safetensors, .ckpt) and user_data directory - Added Cargo.lock to gitignore with appropriate comment - Reorganized IDE files section in gitignore for better clarity - Added newline at end of file for proper formatting
145 lines
1.4 KiB
Plaintext
145 lines
1.4 KiB
Plaintext
# Rust build artifacts
|
|
target/
|
|
|
|
# Cargo lock file
|
|
Cargo.lock
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor backup files
|
|
*.backup
|
|
*~
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build directories
|
|
build/
|
|
dist/
|
|
out/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Node.js dependencies (if any)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
|
|
# Python specific (if any)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# IDE specific
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Test coverage
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.nox/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
|
|
# Local development files
|
|
local_settings.py
|
|
db.sqlite3
|
|
|
|
# Package manager
|
|
.Python
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Jupyter notebooks
|
|
.ipynb_checkpoints
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# Mkdocs documentation
|
|
.site
|
|
|
|
# MyPy cache
|
|
.mypy_cache/
|
|
|
|
# Pyre
|
|
.pyre/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# PyInstaller
|
|
pyinstaller-build/
|
|
|
|
# Pyenv
|
|
.python-version
|
|
|
|
# Pipenv
|
|
Pipfile.lock
|
|
|
|
# PEP 582
|
|
__pypackages__/
|
|
|
|
# Scrapy
|
|
.scrapy
|
|
|
|
# Web assets cache
|
|
.webassets-cache
|
|
|
|
# SageMath
|
|
*.sage.py
|
|
|
|
# Spyder project settings
|
|
.spyproject/
|
|
|
|
# Rope config
|
|
.rope/
|
|
|
|
# Docker
|
|
.docker/
|
|
*.docker
|
|
|
|
# Rust specific
|
|
*.rs.bk
|
|
Cargo.toml~
|
|
|
|
# Demo specific
|
|
demo/
|
|
|
|
# Additional Rust specific
|
|
*.lock
|
|
|
|
# Generated model files
|
|
*.mpk
|
|
*.pt
|
|
*.bin
|
|
*.safetensors
|
|
*.ckpt
|
|
|
|
# User-specific data
|
|
user_data/ |