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__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
**/__pycache__/ **/__pycache__/
**/*.py[cod] **/*.pyc
**/*.pyo
**/*.pyd
# C extensions # ==========================================
*.so # Virtual environments
# ==========================================
# Virtual environment
.env .env
.venv .venv
env/ env/
@ -17,21 +20,29 @@ ENV/
env.bak/ env.bak/
venv.bak/ venv.bak/
# pipenv # ==========================================
# Dependency files
# ==========================================
Pipfile.lock Pipfile.lock
# Poetry
poetry.lock poetry.lock
# PyInstaller # ==========================================
*.manifest # Distribution / build
*.spec # ==========================================
build/
dist/
*.egg-info/
.eggs/
# ==========================================
# Installer logs # Installer logs
# ==========================================
pip-log.txt pip-log.txt
pip-delete-this-directory.txt pip-delete-this-directory.txt
# Unit test / coverage reports # ==========================================
# Unit test / coverage
# ==========================================
htmlcov/ htmlcov/
.tox/ .tox/
.nox/ .nox/
@ -44,8 +55,14 @@ coverage.xml
*.py,cover *.py,cover
.hypothesis/ .hypothesis/
.pytest_cache/ .pytest_cache/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
# Django stuff: # ==========================================
# Django
# ==========================================
*.log *.log
local_settings.py local_settings.py
db.sqlite3 db.sqlite3
@ -53,77 +70,71 @@ db.sqlite3-journal
media/ media/
staticfiles/ staticfiles/
# Translations # Migrations (optional, keep *.py if you want to version control)
*.mo
# Django migrations
**/migrations/*.pyc **/migrations/*.pyc
**/migrations/__pycache__/ **/migrations/__pycache__/
**/migrations/*.py
# PyCharm # ==========================================
# IDEs and editors
# ==========================================
.idea/ .idea/
# VS Code
.vscode/ .vscode/
# MyPy # ==========================================
.mypy_cache/ # OS-specific files
.dmypy.json # ==========================================
dmypy.json .DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# Pyre type checker # ==========================================
.pyre/ # Environment variable files
# ==========================================
*.env
*.env.*
# ==========================================
# Profiles # Profiles
.prof # ==========================================
*.prof
# Backup files # ==========================================
# Backup and swap files
# ==========================================
*~ *~
*.bak *.bak
*.swp *.swp
*.swo *.swo
# macOS # ==========================================
.DS_Store # Docker (optional)
# ==========================================
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# dotenv environment variables
*.env
*.env.*
# coverage reports
*.lcov
# Docker
**/Dockerfile **/Dockerfile
**/docker-compose*.yml **/docker-compose*.yml
# Build # ==========================================
build/ # Celery (if used)
dist/ # ==========================================
*.egg-info/
.eggs/
# If you use celery
celerybeat-schedule celerybeat-schedule
celerybeat.pid celerybeat.pid
# If you use Sphinx # ==========================================
# Sphinx docs
# ==========================================
docs/_build/ docs/_build/
# ==========================================
# PyBuilder # PyBuilder
# ==========================================
target/ target/
# ==========================================
# Jupyter Notebook # Jupyter Notebook
.ipynb_checkpoints # ==========================================
.ipynb_checkpoints/
# ==========================================
# pyenv # pyenv
# ==========================================
.python-version .python-version
# Environments
.env/

View File

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