70 lines
791 B
Plaintext
70 lines
791 B
Plaintext
# Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
|
||
# C extensions
|
||
*.so
|
||
|
||
# Django
|
||
*.log
|
||
*.pot
|
||
*.pyc
|
||
*.pyo
|
||
*.pyd
|
||
*.db
|
||
*.sqlite3
|
||
db.sqlite3
|
||
media/
|
||
staticfiles/
|
||
local_settings.py
|
||
|
||
# If using Django collectstatic
|
||
/static/
|
||
/media/
|
||
|
||
# Virtual environment
|
||
venv/
|
||
env/
|
||
ENV/
|
||
.venv/
|
||
.env/
|
||
*.env
|
||
|
||
# IDE / Editor
|
||
.vscode/
|
||
.idea/
|
||
*.swp
|
||
*.swo
|
||
|
||
# Mac / Linux / Windows system files
|
||
.DS_Store
|
||
Thumbs.db
|
||
ehthumbs.db
|
||
|
||
# pytest / coverage
|
||
.coverage
|
||
htmlcov/
|
||
.tox/
|
||
.pytest_cache/
|
||
nosetests.xml
|
||
coverage.xml
|
||
|
||
# mypy
|
||
.mypy_cache/
|
||
.dmypy.json
|
||
dmypy.json
|
||
|
||
# Django migrations (optional, agar har bir devda qayta yaratilsa)
|
||
# **EHTIYOT BO'LING:** agar migration fayllarni saqlamoqchi bo‘lsangiz, bu qatorni o‘chiring.
|
||
#migrations/
|
||
|
||
# Docker
|
||
*.pid
|
||
*.log
|
||
docker-compose.override.yml
|
||
|
||
# VSCode settings (optional)
|
||
.vscode/
|
||
|