freekake_api/.gitignore
2025-06-20 13:43:21 +07:00

141 lines
2.7 KiB
Plaintext

# ==========================================
# Python cache and bytecode files
# ==========================================
__pycache__/
*.py[cod]
*$py.class
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
# ==========================================
# Virtual environments
# ==========================================
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# ==========================================
# Dependency files
# ==========================================
Pipfile.lock
poetry.lock
# ==========================================
# Distribution / build
# ==========================================
build/
dist/
*.egg-info/
.eggs/
# ==========================================
# Installer logs
# ==========================================
pip-log.txt
pip-delete-this-directory.txt
# ==========================================
# Unit test / coverage
# ==========================================
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
# ==========================================
# Django
# ==========================================
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
media/
staticfiles/
# Migrations (optional, keep *.py if you want to version control)
**/migrations/*.pyc
**/migrations/__pycache__/
# ==========================================
# IDEs and editors
# ==========================================
.idea/
.vscode/
# ==========================================
# OS-specific files
# ==========================================
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# ==========================================
# Environment variable files
# ==========================================
*.env
*.env.*
# ==========================================
# Profiles
# ==========================================
*.prof
# ==========================================
# Backup and swap files
# ==========================================
*~
*.bak
*.swp
*.swo
# ==========================================
# Docker (optional)
# ==========================================
#**/Dockerfile
#**/docker-compose*.yml
# ==========================================
# Celery (if used)
# ==========================================
celerybeat-schedule
celerybeat.pid
# ==========================================
# Sphinx docs
# ==========================================
docs/_build/
# ==========================================
# PyBuilder
# ==========================================
target/
# ==========================================
# Jupyter Notebook
# ==========================================
.ipynb_checkpoints/
# ==========================================
# pyenv
# ==========================================
.python-version