From a40de07a0d9431b363ffdf3b34830b8b2bdeac2b Mon Sep 17 00:00:00 2001 From: Irwan Cahyono Date: Mon, 16 Jun 2025 23:15:47 +0700 Subject: [PATCH] ignore --- .gitignore | 127 ++++++++++++++++++++++------------------ freekake_api/.gitignore | 127 ++++++++++++++++++++++------------------ 2 files changed, 138 insertions(+), 116 deletions(-) diff --git a/.gitignore b/.gitignore index 5093ffb..ca84a44 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,17 @@ -# Byte-compiled / optimized / DLL files +# ========================================== +# Python cache and bytecode files +# ========================================== __pycache__/ *.py[cod] *$py.class **/__pycache__/ -**/*.py[cod] +**/*.pyc +**/*.pyo +**/*.pyd -# C extensions -*.so - -# Virtual environment +# ========================================== +# Virtual environments +# ========================================== .env .venv env/ @@ -17,21 +20,29 @@ ENV/ env.bak/ venv.bak/ -# pipenv +# ========================================== +# Dependency files +# ========================================== Pipfile.lock - -# Poetry poetry.lock -# PyInstaller -*.manifest -*.spec +# ========================================== +# Distribution / build +# ========================================== +build/ +dist/ +*.egg-info/ +.eggs/ +# ========================================== # Installer logs +# ========================================== pip-log.txt pip-delete-this-directory.txt -# Unit test / coverage reports +# ========================================== +# Unit test / coverage +# ========================================== htmlcov/ .tox/ .nox/ @@ -44,8 +55,14 @@ coverage.xml *.py,cover .hypothesis/ .pytest_cache/ +.mypy_cache/ +.dmypy.json +dmypy.json +.pyre/ -# Django stuff: +# ========================================== +# Django +# ========================================== *.log local_settings.py db.sqlite3 @@ -53,77 +70,71 @@ db.sqlite3-journal media/ staticfiles/ -# Translations -*.mo - -# Django migrations +# Migrations (optional, keep *.py if you want to version control) **/migrations/*.pyc **/migrations/__pycache__/ -**/migrations/*.py -# PyCharm +# ========================================== +# IDEs and editors +# ========================================== .idea/ - -# VS Code .vscode/ -# MyPy -.mypy_cache/ -.dmypy.json -dmypy.json +# ========================================== +# OS-specific files +# ========================================== +.DS_Store +Thumbs.db +ehthumbs.db +Desktop.ini -# Pyre type checker -.pyre/ +# ========================================== +# Environment variable files +# ========================================== +*.env +*.env.* +# ========================================== # Profiles -.prof +# ========================================== +*.prof -# Backup files +# ========================================== +# Backup and swap files +# ========================================== *~ *.bak *.swp *.swo -# macOS -.DS_Store - -# Windows -Thumbs.db -ehthumbs.db -Desktop.ini - -# dotenv environment variables -*.env -*.env.* - -# coverage reports -*.lcov - -# Docker +# ========================================== +# Docker (optional) +# ========================================== **/Dockerfile **/docker-compose*.yml -# Build -build/ -dist/ -*.egg-info/ -.eggs/ - -# If you use celery +# ========================================== +# Celery (if used) +# ========================================== celerybeat-schedule celerybeat.pid -# If you use Sphinx +# ========================================== +# Sphinx docs +# ========================================== docs/_build/ +# ========================================== # PyBuilder +# ========================================== target/ +# ========================================== # Jupyter Notebook -.ipynb_checkpoints +# ========================================== +.ipynb_checkpoints/ +# ========================================== # pyenv +# ========================================== .python-version - -# Environments -.env/ diff --git a/freekake_api/.gitignore b/freekake_api/.gitignore index 5093ffb..ca84a44 100644 --- a/freekake_api/.gitignore +++ b/freekake_api/.gitignore @@ -1,14 +1,17 @@ -# Byte-compiled / optimized / DLL files +# ========================================== +# Python cache and bytecode files +# ========================================== __pycache__/ *.py[cod] *$py.class **/__pycache__/ -**/*.py[cod] +**/*.pyc +**/*.pyo +**/*.pyd -# C extensions -*.so - -# Virtual environment +# ========================================== +# Virtual environments +# ========================================== .env .venv env/ @@ -17,21 +20,29 @@ ENV/ env.bak/ venv.bak/ -# pipenv +# ========================================== +# Dependency files +# ========================================== Pipfile.lock - -# Poetry poetry.lock -# PyInstaller -*.manifest -*.spec +# ========================================== +# Distribution / build +# ========================================== +build/ +dist/ +*.egg-info/ +.eggs/ +# ========================================== # Installer logs +# ========================================== pip-log.txt pip-delete-this-directory.txt -# Unit test / coverage reports +# ========================================== +# Unit test / coverage +# ========================================== htmlcov/ .tox/ .nox/ @@ -44,8 +55,14 @@ coverage.xml *.py,cover .hypothesis/ .pytest_cache/ +.mypy_cache/ +.dmypy.json +dmypy.json +.pyre/ -# Django stuff: +# ========================================== +# Django +# ========================================== *.log local_settings.py db.sqlite3 @@ -53,77 +70,71 @@ db.sqlite3-journal media/ staticfiles/ -# Translations -*.mo - -# Django migrations +# Migrations (optional, keep *.py if you want to version control) **/migrations/*.pyc **/migrations/__pycache__/ -**/migrations/*.py -# PyCharm +# ========================================== +# IDEs and editors +# ========================================== .idea/ - -# VS Code .vscode/ -# MyPy -.mypy_cache/ -.dmypy.json -dmypy.json +# ========================================== +# OS-specific files +# ========================================== +.DS_Store +Thumbs.db +ehthumbs.db +Desktop.ini -# Pyre type checker -.pyre/ +# ========================================== +# Environment variable files +# ========================================== +*.env +*.env.* +# ========================================== # Profiles -.prof +# ========================================== +*.prof -# Backup files +# ========================================== +# Backup and swap files +# ========================================== *~ *.bak *.swp *.swo -# macOS -.DS_Store - -# Windows -Thumbs.db -ehthumbs.db -Desktop.ini - -# dotenv environment variables -*.env -*.env.* - -# coverage reports -*.lcov - -# Docker +# ========================================== +# Docker (optional) +# ========================================== **/Dockerfile **/docker-compose*.yml -# Build -build/ -dist/ -*.egg-info/ -.eggs/ - -# If you use celery +# ========================================== +# Celery (if used) +# ========================================== celerybeat-schedule celerybeat.pid -# If you use Sphinx +# ========================================== +# Sphinx docs +# ========================================== docs/_build/ +# ========================================== # PyBuilder +# ========================================== target/ +# ========================================== # Jupyter Notebook -.ipynb_checkpoints +# ========================================== +.ipynb_checkpoints/ +# ========================================== # pyenv +# ========================================== .python-version - -# Environments -.env/