|
1 | 1 | # ETC |
2 | | -grafana-config.ini |
| 2 | +.terraform.lock.hcl |
3 | 3 | dashboard.yml |
| 4 | +grafana-config.ini |
| 5 | +hosts |
4 | 6 | node-exporter.json |
5 | 7 | playbooks/* |
6 | 8 | prometheus.yml |
7 | 9 | tfplan |
8 | | -.terraform.lock.hcl |
9 | 10 |
|
10 | 11 | # General |
11 | 12 | .DS_Store |
@@ -70,6 +71,169 @@ override.tf.json |
70 | 71 | .terraformrc |
71 | 72 | terraform.rc |
72 | 73 |
|
| 74 | +# Byte-compiled / optimized / DLL files |
| 75 | +__pycache__/ |
| 76 | +*.py[cod] |
| 77 | +*$py.class |
| 78 | + |
| 79 | +# C extensions |
| 80 | +*.so |
| 81 | + |
| 82 | +# Distribution / packaging |
| 83 | +.Python |
| 84 | +build/ |
| 85 | +develop-eggs/ |
| 86 | +dist/ |
| 87 | +downloads/ |
| 88 | +eggs/ |
| 89 | +.eggs/ |
| 90 | +lib/ |
| 91 | +lib64/ |
| 92 | +parts/ |
| 93 | +sdist/ |
| 94 | +var/ |
| 95 | +wheels/ |
| 96 | +share/python-wheels/ |
| 97 | +*.egg-info/ |
| 98 | +.installed.cfg |
| 99 | +*.egg |
| 100 | +MANIFEST |
| 101 | + |
| 102 | +# PyInstaller |
| 103 | +# Usually these files are written by a python script from a template |
| 104 | +# before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 105 | +*.manifest |
| 106 | +*.spec |
| 107 | + |
| 108 | +# Installer logs |
| 109 | +pip-log.txt |
| 110 | +pip-delete-this-directory.txt |
| 111 | + |
| 112 | +# Unit test / coverage reports |
| 113 | +htmlcov/ |
| 114 | +.tox/ |
| 115 | +.nox/ |
| 116 | +.coverage |
| 117 | +.coverage.* |
| 118 | +.cache |
| 119 | +nosetests.xml |
| 120 | +coverage.xml |
| 121 | +*.cover |
| 122 | +*.py,cover |
| 123 | +.hypothesis/ |
| 124 | +.pytest_cache/ |
| 125 | +cover/ |
| 126 | + |
| 127 | +# Translations |
| 128 | +*.mo |
| 129 | +*.pot |
| 130 | + |
| 131 | +# Django stuff: |
| 132 | +*.log |
| 133 | +local_settings.py |
| 134 | +db.sqlite3 |
| 135 | +db.sqlite3-journal |
| 136 | + |
| 137 | +# Flask stuff: |
| 138 | +instance/ |
| 139 | +.webassets-cache |
| 140 | + |
| 141 | +# Scrapy stuff: |
| 142 | +.scrapy |
| 143 | + |
| 144 | +# Sphinx documentation |
| 145 | +docs/_build/ |
| 146 | + |
| 147 | +# PyBuilder |
| 148 | +.pybuilder/ |
| 149 | +target/ |
| 150 | + |
| 151 | +# Jupyter Notebook |
| 152 | +.ipynb_checkpoints |
| 153 | + |
| 154 | +# IPython |
| 155 | +profile_default/ |
| 156 | +ipython_config.py |
| 157 | + |
| 158 | +# pyenv |
| 159 | +# For a library or package, you might want to ignore these files since the code is |
| 160 | +# intended to run in multiple environments; otherwise, check them in: |
| 161 | +# .python-version |
| 162 | + |
| 163 | +# pipenv |
| 164 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 165 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 166 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 167 | +# install all needed dependencies. |
| 168 | +#Pipfile.lock |
| 169 | + |
| 170 | +# poetry |
| 171 | +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
| 172 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 173 | +# commonly ignored for libraries. |
| 174 | +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
| 175 | +#poetry.lock |
| 176 | + |
| 177 | +# pdm |
| 178 | +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. |
| 179 | +#pdm.lock |
| 180 | +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it |
| 181 | +# in version control. |
| 182 | +# https://pdm.fming.dev/latest/usage/project/#working-with-version-control |
| 183 | +.pdm.toml |
| 184 | +.pdm-python |
| 185 | +.pdm-build/ |
| 186 | + |
| 187 | +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm |
| 188 | +__pypackages__/ |
| 189 | + |
| 190 | +# Celery stuff |
| 191 | +celerybeat-schedule |
| 192 | +celerybeat.pid |
| 193 | + |
| 194 | +# SageMath parsed files |
| 195 | +*.sage.py |
| 196 | + |
| 197 | +# Environments |
| 198 | +.env |
| 199 | +.venv |
| 200 | +env/ |
| 201 | +venv/ |
| 202 | +ENV/ |
| 203 | +env.bak/ |
| 204 | +venv.bak/ |
| 205 | + |
| 206 | +# Spyder project settings |
| 207 | +.spyderproject |
| 208 | +.spyproject |
| 209 | + |
| 210 | +# Rope project settings |
| 211 | +.ropeproject |
| 212 | + |
| 213 | +# mkdocs documentation |
| 214 | +/site |
| 215 | + |
| 216 | +# mypy |
| 217 | +.mypy_cache/ |
| 218 | +.dmypy.json |
| 219 | +dmypy.json |
| 220 | + |
| 221 | +# Pyre type checker |
| 222 | +.pyre/ |
| 223 | + |
| 224 | +# pytype static type analyzer |
| 225 | +.pytype/ |
| 226 | + |
| 227 | +# Cython debug symbols |
| 228 | +cython_debug/ |
| 229 | + |
| 230 | +# PyCharm |
| 231 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 232 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 233 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 234 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 235 | +#.idea/ |
| 236 | + |
73 | 237 | # INCLUDE |
74 | 238 | !**/*.example |
75 | 239 | !**/.gitkeep |
0 commit comments