Commit
·
fef177b
1
Parent(s):
3cc1b9e
refactor
Browse files- .gitignore +147 -0
.gitignore
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
*$py.class
|
| 5 |
+
|
| 6 |
+
# C extensions
|
| 7 |
+
*.so
|
| 8 |
+
|
| 9 |
+
# Distribution / packaging
|
| 10 |
+
.Python
|
| 11 |
+
build/
|
| 12 |
+
develop-eggs/
|
| 13 |
+
dist/
|
| 14 |
+
downloads/
|
| 15 |
+
eggs/
|
| 16 |
+
.eggs/
|
| 17 |
+
lib/
|
| 18 |
+
lib64/
|
| 19 |
+
parts/
|
| 20 |
+
sdist/
|
| 21 |
+
var/
|
| 22 |
+
wheels/
|
| 23 |
+
share/python-wheels/
|
| 24 |
+
*.egg-info/
|
| 25 |
+
.installed.cfg
|
| 26 |
+
*.egg
|
| 27 |
+
MANIFEST
|
| 28 |
+
|
| 29 |
+
# Python virtualenv
|
| 30 |
+
.venv/
|
| 31 |
+
env/
|
| 32 |
+
venv/
|
| 33 |
+
ENV/
|
| 34 |
+
env.bak/
|
| 35 |
+
venv.bak/
|
| 36 |
+
|
| 37 |
+
# PyInstaller
|
| 38 |
+
*.manifest
|
| 39 |
+
*.spec
|
| 40 |
+
|
| 41 |
+
# Installer logs
|
| 42 |
+
pip-log.txt
|
| 43 |
+
pip-delete-this-directory.txt
|
| 44 |
+
|
| 45 |
+
# Unit test / coverage reports
|
| 46 |
+
htmlcov/
|
| 47 |
+
.tox/
|
| 48 |
+
.nox/
|
| 49 |
+
.coverage
|
| 50 |
+
.coverage.*
|
| 51 |
+
.cache
|
| 52 |
+
nosetests.xml
|
| 53 |
+
coverage.xml
|
| 54 |
+
*.cover
|
| 55 |
+
*.py,cover
|
| 56 |
+
.hypothesis/
|
| 57 |
+
.pytest_cache/
|
| 58 |
+
cover/
|
| 59 |
+
|
| 60 |
+
# Transifex files
|
| 61 |
+
.tx/
|
| 62 |
+
|
| 63 |
+
# Django stuff:
|
| 64 |
+
*.log
|
| 65 |
+
local_settings.py
|
| 66 |
+
db.sqlite3
|
| 67 |
+
db.sqlite3-journal
|
| 68 |
+
|
| 69 |
+
# Flask stuff:
|
| 70 |
+
instance/
|
| 71 |
+
.webassets-cache
|
| 72 |
+
|
| 73 |
+
# Scrapy stuff:
|
| 74 |
+
.scrapy
|
| 75 |
+
|
| 76 |
+
# Sphinx documentation
|
| 77 |
+
docs/_build/
|
| 78 |
+
|
| 79 |
+
# PyBuilder
|
| 80 |
+
target/
|
| 81 |
+
|
| 82 |
+
# Jupyter Notebook
|
| 83 |
+
.ipynb_checkpoints
|
| 84 |
+
|
| 85 |
+
# IPython
|
| 86 |
+
profile_default/
|
| 87 |
+
ipython_config.py
|
| 88 |
+
|
| 89 |
+
# PEP 582; E.g. __pypackages__ folder
|
| 90 |
+
__pypackages__/
|
| 91 |
+
|
| 92 |
+
# Celery stuff
|
| 93 |
+
celerybeat-schedule
|
| 94 |
+
celerybeat.pid
|
| 95 |
+
|
| 96 |
+
# SageMath parsed files
|
| 97 |
+
*.sage.py
|
| 98 |
+
|
| 99 |
+
# Environments
|
| 100 |
+
.env
|
| 101 |
+
.env.*
|
| 102 |
+
!.env.example
|
| 103 |
+
|
| 104 |
+
# IDEs and editors
|
| 105 |
+
.idea/
|
| 106 |
+
.vscode/
|
| 107 |
+
*.suo
|
| 108 |
+
*.ntvs*
|
| 109 |
+
*.njsproj
|
| 110 |
+
*.sln
|
| 111 |
+
*.sublime-workspace
|
| 112 |
+
|
| 113 |
+
# OS generated files
|
| 114 |
+
.DS_Store
|
| 115 |
+
.DS_Store?
|
| 116 |
+
._*
|
| 117 |
+
.Spotlight-V100
|
| 118 |
+
.Trashes
|
| 119 |
+
ehthumbs.db
|
| 120 |
+
Thumbs.db
|
| 121 |
+
|
| 122 |
+
# Credentials
|
| 123 |
+
# Ignore the entire credentials directory by default
|
| 124 |
+
credentials/
|
| 125 |
+
# If you have other JSON files you *do* want to commit, but want to ensure
|
| 126 |
+
# credential JSON files specifically by name or in certain locations are ignored:
|
| 127 |
+
# specific_credential_file.json
|
| 128 |
+
# some_other_dir/specific_creds.json
|
| 129 |
+
|
| 130 |
+
# Docker
|
| 131 |
+
.dockerignore
|
| 132 |
+
docker-compose.override.yml
|
| 133 |
+
|
| 134 |
+
# Logs
|
| 135 |
+
logs/
|
| 136 |
+
*.log
|
| 137 |
+
npm-debug.log*
|
| 138 |
+
yarn-debug.log*
|
| 139 |
+
yarn-error.log*
|
| 140 |
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
| 141 |
+
pids/
|
| 142 |
+
*.pid
|
| 143 |
+
*.seed
|
| 144 |
+
*.pid.lock
|
| 145 |
+
# Project-specific planning files
|
| 146 |
+
refactoring_plan.md
|
| 147 |
+
multiple_credentials_implementation.md
|