Full refactor

This commit is contained in:
2026-03-11 16:12:08 -06:00
parent 464eb3168b
commit b637967823
3 changed files with 418 additions and 161 deletions

76
.gitignore vendored Normal file
View File

@@ -0,0 +1,76 @@
# mReschke Python .gitignore file standard
# Latest Version https://git.mreschke.net/-/snippets/4
# mReschke 2020-11-17
# NOTES:
# Folders should be denoted with a trailing /
# /env/ denotes only the root level ./env folder be ignored
# env/ denotes ANY env folder be ignored, even in ./some/deep/folder/env
# Sames goes for files
# OS Files
.DS_Store
._.DS_Store
._.TemporaryItems
.AppleDouble
Thumbs.db
.nfs*
.swp
# OS Folders
#
# IDE Files
#
# IDE Folders
/.idea/
/.vscode/
# Python Files
/.venv
/.env
/.coverage
*.pyc
*.py[cod]
*.egg
.Python
/.installed.cfg
*.manifest
*.spec
pip-log.txt
pip-delete-this-directory.txt
# Python Folders
/instance/
/venv/
/env/
/htmlcov/
/html/
/sdist/
/dist/
/build/
*.egg-info/
eggs/
develop-eggs/
__pycache__/
.pytest_cache/
# Django Files
#
# Django Folders
/static/
# JavaScript Files
npm-debug.log
yarn-error.log
# Javascript Folders
/node_modules/
# Other Files
/:memory
# Other Folders
/.vagrant/