Initial commit
This commit is contained in:
133
.gitignore
vendored
Normal file
133
.gitignore
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
# Rust build artifacts
|
||||
target/
|
||||
Cargo.lock
|
||||
|
||||
# Rust 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
|
||||
Reference in New Issue
Block a user