Full refactor
This commit is contained in:
76
.gitignore
vendored
Normal file
76
.gitignore
vendored
Normal 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/
|
||||
Reference in New Issue
Block a user