This commit is contained in:
Irwan Cahyono 2025-06-16 23:15:47 +07:00
parent bc80b77b85
commit a40de07a0d
2 changed files with 138 additions and 116 deletions

127
.gitignore vendored
View File

@ -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/

View File

@ -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/