1- .py [cod ]
2- __pycache__ /
3- .mypy_cache /
4- .pytest_cache /
5- .ruff_cache /
6- .pdm-python
1+ # Local .terraform directories
2+ ** /.terraform /*
3+
4+ # .tfstate files
5+ * .tfstate
6+ * .tfstate. *
7+ * .terraform.lock.hcl
8+
9+ # Crash log files
10+ crash.log
11+
12+ # Exclude all .tfvars files, which are likely to contain sentitive data, such as
13+ # password, private keys, and other secrets. These should not be part of version
14+ # control as they are data points which are potentially sensitive and subject
15+ # to change depending on the environment.
16+ #
17+ * .tfvars
18+
19+ # Ignore files for local testing
20+ test.tf
21+
22+ # Ignore override files as they are usually used to override resources locally and so
23+ # are not checked in
24+ override.tf
25+ override.tf.json
26+ * _override.tf
27+ * _override.tf.json
28+
29+ # Include override files you do wish to add to version control using negated pattern
30+ #
31+ # !example_override.tf
32+
33+ # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
34+ # example: *tfplan*
35+
36+ # Ignore CLI configuration files
37+ .terraformrc
38+ terraform.rc
39+
40+ # Ignore .tfsec
41+ .tfsec /
42+
43+ # Ignore Mac files
44+ .DS_Store
45+
46+ # Ignore IDE files
47+ .idea /
48+
49+ # Node modules
50+ /node_modules
751
52+ # Visual Studio Code
53+ .vscode /
54+
55+ # ## Go ###
56+ # Binaries for programs and plugins
57+ * .exe
58+ * .exe~
59+ * .dll
60+ * .so
61+ * .dylib
62+
63+ # Test binary, built with `go test -c`
64+ * .test
65+
66+ # Output of the go coverage tool, specifically when used with LiteIDE
67+ * .out
68+
69+ # Dependency directories (remove the comment below to include it)
70+ # vendor/
71+
72+ # Go workspace file
73+ go.work
74+
75+ # ## Python ###
876# Byte-compiled / optimized / DLL files
977__pycache__ /
10- * .py [codz ]
78+ * .py [cod ]
1179* $py.class
1280
1381# C extensions
14- * .so
82+ # *.so already covered above
1583
1684# Distribution / packaging
17- .Python
18- build /
19- develop-eggs /
2085dist /
21- downloads /
22- eggs /
23- .eggs /
24- lib /
25- lib64 /
26- parts /
27- sdist /
28- var /
29- wheels /
30- share /python-wheels /
86+ build /
3187* .egg-info /
32- .installed.cfg
33- * .egg
34- MANIFEST
35-
36- # PyInstaller
37- # Usually these files are written by a python script from a template
38- # before PyInstaller builds the exe, so as to inject date/other infos into it.
39- * .manifest
40- * .spec
41-
42- # Installer logs
43- pip-log.txt
44- pip-delete-this-directory.txt
88+ .eggs /
4589
4690# Unit test / coverage reports
4791htmlcov /
@@ -53,171 +97,27 @@ htmlcov/
5397nosetests.xml
5498coverage.xml
5599* .cover
56- * .py.cover
57100.hypothesis /
58101.pytest_cache /
59- cover /
60-
61- # Translations
62- * .mo
63- * .pot
64-
65- # Django stuff:
66- * .log
67- local_settings.py
68- db.sqlite3
69- db.sqlite3-journal
70-
71- # Flask stuff:
72- instance /
73- .webassets-cache
74102
75- # Scrapy stuff:
76- .scrapy
77-
78- # Sphinx documentation
79- docs /_build /
80-
81- # PyBuilder
82- .pybuilder /
83- target /
103+ # Virtual environments
104+ .venv /
105+ venv /
106+ ENV /
84107
85108# Jupyter Notebook
86109.ipynb_checkpoints
87110
88- # IPython
89- profile_default /
90- ipython_config.py
91-
92111# pyenv
93- # For a library or package, you might want to ignore these files since the code is
94- # intended to run in multiple environments; otherwise, check them in:
95- # .python-version
96-
97- # pipenv
98- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
99- # However, in case of collaboration, if having platform-specific dependencies or dependencies
100- # having no cross-platform support, pipenv may install dependencies that don't work, or not
101- # install all needed dependencies.
102- # Pipfile.lock
103-
104- # UV
105- # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
106- # This is especially recommended for binary packages to ensure reproducibility, and is more
107- # commonly ignored for libraries.
108- # uv.lock
109-
110- # poetry
111- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
112- # This is especially recommended for binary packages to ensure reproducibility, and is more
113- # commonly ignored for libraries.
114- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
115- # poetry.lock
116- # poetry.toml
117-
118- # pdm
119- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
120- # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
121- # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
122- # pdm.lock
123- # pdm.toml
124- .pdm-python
125- .pdm-build /
126-
127- # pixi
128- # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
129- # pixi.lock
130- # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
131- # in the .venv directory. It is recommended not to include this directory in version control.
132- .pixi
133-
134- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
135- __pypackages__ /
136-
137- # Celery stuff
138- celerybeat-schedule
139- celerybeat.pid
140-
141- # Redis
142- * .rdb
143- * .aof
144- * .pid
145-
146- # RabbitMQ
147- mnesia /
148- rabbitmq /
149- rabbitmq-data /
150-
151- # ActiveMQ
152- activemq-data /
153-
154- # SageMath parsed files
155- * .sage.py
156-
157- # Environments
158- .env
159- .envrc
160- .venv
161- env /
162- venv /
163- ENV /
164- env.bak /
165- venv.bak /
166-
167- # Spyder project settings
168- .spyderproject
169- .spyproject
170-
171- # Rope project settings
172- .ropeproject
173-
174- # mkdocs documentation
175- /site
112+ .python-version
176113
177114# mypy
178115.mypy_cache /
179116.dmypy.json
180117dmypy.json
181118
182- # Pyre type checker
183- .pyre /
184-
185- # pytype static type analyzer
186- .pytype /
187-
188- # Cython debug symbols
189- cython_debug /
190-
191- # PyCharm
192- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
193- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
194- # and can be added to the global gitignore or merged into this file. For a more nuclear
195- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
196- # .idea/
197-
198- # Abstra
199- # Abstra is an AI-powered process automation framework.
200- # Ignore directories containing user credentials, local state, and settings.
201- # Learn more at https://abstra.io/docs
202- .abstra /
203-
204- # Visual Studio Code
205- # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
206- # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
207- # and can be added to the global gitignore or merged into this file. However, if you prefer,
208- # you could uncomment the following to ignore the entire vscode folder
209- # .vscode/
210-
211- # Ruff stuff:
212- .ruff_cache /
213-
214- # PyPI configuration file
215- .pypirc
216-
217- # Marimo
218- marimo /_static /
219- marimo /_lsp /
220- __marimo__ /
119+ # Environments
120+ .env
221121
222- # Streamlit
223- .streamlit / secrets.toml
122+ .bob /
123+ .bobignore
0 commit comments