mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 12:41:48 +00:00
47 lines
400 B
Plaintext
47 lines
400 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.env.backup
|
|
|
|
# Databases
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
*.pyc
|
|
|
|
# Alembic
|
|
alembic/*.pyc
|
|
|
|
# Pytest
|
|
.pytest_cache/
|
|
|
|
# Coverage
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Logs and Caches
|
|
*.log
|
|
**/.mypy_cache/
|
|
**/.ruff_cache/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
|
|
# Audio
|
|
*.mp3
|
|
|
|
# Other
|
|
.DS_Store
|