From dbb8a32ba8ef2300ee802c74e320886a7c9c85ef Mon Sep 17 00:00:00 2001 From: "admin.suherdy" Date: Tue, 25 Nov 2025 20:40:00 +0700 Subject: [PATCH] first commit --- .gitignore | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..808c5ae --- /dev/null +++ b/.gitignore @@ -0,0 +1,68 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class + +# Byte-compiled / build / packaging +build/ +dist/ +eggs/ +*.egg-info/ +.eggs/ +pip-wheel-metadata/ +wheelhouse/ + +# Virtual environments +.env +.venv/ +venv/ +env/ +ENV/ +env.bak/ +venv.bak/ + +# IDEs / editors +.vscode/ +.idea/ +*.sublime-project +*.sublime-workspace + +# Jupyter +.ipynb_checkpoints + +# Logs, databases, caches +*.log +*.sqlite3 +*.db +*.db-journal +.pytest_cache/ +.cache/ +.coverage +.coverage.* +htmlcov/ + +# Testing / tooling +.tox/ +.nox/ +.mypy_cache/ +.pyre/ +.pytype/ + +# OS generated +.DS_Store +Thumbs.db + +# Sensitive / credentials +.envrc +.env.local +credentials.json +secrets.json +*.pem +*.key + +# Project-specific outputs +data/ +outputs/ +reports/ +models/ +logs/ \ No newline at end of file