|
| 1 | +.env |
| 2 | +Adobe/ |
| 3 | +data/ |
| 4 | +venv/ |
| 5 | +**/__pycache__/ |
| 6 | + |
| 7 | +# Logs |
| 8 | +logs |
| 9 | +*.log |
| 10 | +npm-debug.log* |
| 11 | +yarn-debug.log* |
| 12 | +yarn-error.log* |
| 13 | +lerna-debug.log* |
| 14 | + |
| 15 | +# Diagnostic reports (https://nodejs.org/api/report.html) |
| 16 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
| 17 | + |
| 18 | +# Runtime data |
| 19 | +pids |
| 20 | +*.pid |
| 21 | +*.seed |
| 22 | +*.pid.lock |
| 23 | + |
| 24 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 25 | +lib-cov |
| 26 | + |
| 27 | +# Coverage directory used by tools like istanbul |
| 28 | +coverage |
| 29 | +*.lcov |
| 30 | + |
| 31 | +# nyc test coverage |
| 32 | +.nyc_output |
| 33 | + |
| 34 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 35 | +.grunt |
| 36 | + |
| 37 | +# Bower dependency directory (https://bower.io/) |
| 38 | +bower_components |
| 39 | + |
| 40 | +# node-waf configuration |
| 41 | +.lock-wscript |
| 42 | + |
| 43 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 44 | +build/Release |
| 45 | + |
| 46 | +# Dependency directories |
| 47 | +node_modules/ |
| 48 | +jspm_packages/ |
| 49 | + |
| 50 | +# Snowpack dependency directory (https://snowpack.dev/) |
| 51 | +web_modules/ |
| 52 | + |
| 53 | +# TypeScript cache |
| 54 | +*.tsbuildinfo |
| 55 | + |
| 56 | +# Optional npm cache directory |
| 57 | +.npm |
| 58 | + |
| 59 | +# Optional eslint cache |
| 60 | +.eslintcache |
| 61 | + |
| 62 | +# Optional stylelint cache |
| 63 | +.stylelintcache |
| 64 | + |
| 65 | +# Optional REPL history |
| 66 | +.node_repl_history |
| 67 | + |
| 68 | +# Output of 'npm pack' |
| 69 | +*.tgz |
| 70 | + |
| 71 | +# Yarn Integrity file |
| 72 | +.yarn-integrity |
| 73 | + |
| 74 | +# dotenv environment variable files |
| 75 | +.env |
| 76 | +.env.* |
| 77 | +!.env.example |
| 78 | + |
| 79 | +# parcel-bundler cache (https://parceljs.org/) |
| 80 | +.cache |
| 81 | +.parcel-cache |
| 82 | + |
| 83 | +# Next.js build output |
| 84 | +.next |
| 85 | +out |
| 86 | + |
| 87 | +# Nuxt.js build / generate output |
| 88 | +.nuxt |
| 89 | +dist |
| 90 | + |
| 91 | +# Gatsby files |
| 92 | +.cache/ |
| 93 | +# Comment in the public line in if your project uses Gatsby and not Next.js |
| 94 | +# https://nextjs.org/blog/next-9-1#public-directory-support |
| 95 | +# public |
| 96 | + |
| 97 | +# vuepress build output |
| 98 | +.vuepress/dist |
| 99 | + |
| 100 | +# vuepress v2.x temp and cache directory |
| 101 | +.temp |
| 102 | +.cache |
| 103 | + |
| 104 | +# Sveltekit cache directory |
| 105 | +.svelte-kit/ |
| 106 | + |
| 107 | +# vitepress build output |
| 108 | +**/.vitepress/dist |
| 109 | + |
| 110 | +# vitepress cache directory |
| 111 | +**/.vitepress/cache |
| 112 | + |
| 113 | +# Docusaurus cache and generated files |
| 114 | +.docusaurus |
| 115 | + |
| 116 | +# Serverless directories |
| 117 | +.serverless/ |
| 118 | + |
| 119 | +# FuseBox cache |
| 120 | +.fusebox/ |
| 121 | + |
| 122 | +# DynamoDB Local files |
| 123 | +.dynamodb/ |
| 124 | + |
| 125 | +# Firebase cache directory |
| 126 | +.firebase/ |
| 127 | + |
| 128 | +# TernJS port file |
| 129 | +.tern-port |
| 130 | + |
| 131 | +# Stores VSCode versions used for testing VSCode extensions |
| 132 | +.vscode-test |
| 133 | + |
| 134 | +# yarn v3 |
| 135 | +.pnp.* |
| 136 | +.yarn/* |
| 137 | +!.yarn/patches |
| 138 | +!.yarn/plugins |
| 139 | +!.yarn/releases |
| 140 | +!.yarn/sdks |
| 141 | +!.yarn/versions |
| 142 | + |
| 143 | +# Vite logs files |
| 144 | +vite.config.js.timestamp-* |
| 145 | +vite.config.ts.timestamp-* |
| 146 | + |
| 147 | +# Byte-compiled / optimized / DLL files |
| 148 | +__pycache__/ |
| 149 | +*.py[codz] |
| 150 | +*$py.class |
| 151 | + |
| 152 | +# C extensions |
| 153 | +*.so |
| 154 | + |
| 155 | +# Distribution / packaging |
| 156 | +.Python |
| 157 | +build/ |
| 158 | +develop-eggs/ |
| 159 | +dist/ |
| 160 | +downloads/ |
| 161 | +eggs/ |
| 162 | +.eggs/ |
| 163 | +lib/ |
| 164 | +lib64/ |
| 165 | +parts/ |
| 166 | +sdist/ |
| 167 | +var/ |
| 168 | +wheels/ |
| 169 | +share/python-wheels/ |
| 170 | +*.egg-info/ |
| 171 | +.installed.cfg |
| 172 | +*.egg |
| 173 | +MANIFEST |
| 174 | + |
| 175 | +# PyInstaller |
| 176 | +# Usually these files are written by a python script from a template |
| 177 | +# before PyInstaller builds the exe, so as to inject date/other infos into it. |
| 178 | +*.manifest |
| 179 | +*.spec |
| 180 | + |
| 181 | +# Installer logs |
| 182 | +pip-log.txt |
| 183 | +pip-delete-this-directory.txt |
| 184 | + |
| 185 | +# Unit test / coverage reports |
| 186 | +htmlcov/ |
| 187 | +.tox/ |
| 188 | +.nox/ |
| 189 | +.coverage |
| 190 | +.coverage.* |
| 191 | +.cache |
| 192 | +nosetests.xml |
| 193 | +coverage.xml |
| 194 | +*.cover |
| 195 | +*.py.cover |
| 196 | +.hypothesis/ |
| 197 | +.pytest_cache/ |
| 198 | +cover/ |
| 199 | + |
| 200 | +# Translations |
| 201 | +*.mo |
| 202 | +*.pot |
| 203 | + |
| 204 | +# Django stuff: |
| 205 | +*.log |
| 206 | +local_settings.py |
| 207 | +db.sqlite3 |
| 208 | +db.sqlite3-journal |
| 209 | + |
| 210 | +# Flask stuff: |
| 211 | +instance/ |
| 212 | +.webassets-cache |
| 213 | + |
| 214 | +# Scrapy stuff: |
| 215 | +.scrapy |
| 216 | + |
| 217 | +# Sphinx documentation |
| 218 | +docs/_build/ |
| 219 | + |
| 220 | +# PyBuilder |
| 221 | +.pybuilder/ |
| 222 | +target/ |
| 223 | + |
| 224 | +# Jupyter Notebook |
| 225 | +.ipynb_checkpoints |
| 226 | + |
| 227 | +# IPython |
| 228 | +profile_default/ |
| 229 | +ipython_config.py |
| 230 | + |
| 231 | +# pyenv |
| 232 | +# For a library or package, you might want to ignore these files since the code is |
| 233 | +# intended to run in multiple environments; otherwise, check them in: |
| 234 | +# .python-version |
| 235 | + |
| 236 | +# pipenv |
| 237 | +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. |
| 238 | +# However, in case of collaboration, if having platform-specific dependencies or dependencies |
| 239 | +# having no cross-platform support, pipenv may install dependencies that don't work, or not |
| 240 | +# install all needed dependencies. |
| 241 | +#Pipfile.lock |
| 242 | + |
| 243 | +# UV |
| 244 | +# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. |
| 245 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 246 | +# commonly ignored for libraries. |
| 247 | +#uv.lock |
| 248 | + |
| 249 | +# poetry |
| 250 | +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
| 251 | +# This is especially recommended for binary packages to ensure reproducibility, and is more |
| 252 | +# commonly ignored for libraries. |
| 253 | +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
| 254 | +#poetry.lock |
| 255 | +#poetry.toml |
| 256 | + |
| 257 | +# pdm |
| 258 | +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. |
| 259 | +# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python. |
| 260 | +# https://pdm-project.org/en/latest/usage/project/#working-with-version-control |
| 261 | +#pdm.lock |
| 262 | +#pdm.toml |
| 263 | +.pdm-python |
| 264 | +.pdm-build/ |
| 265 | + |
| 266 | +# pixi |
| 267 | +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. |
| 268 | +#pixi.lock |
| 269 | +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one |
| 270 | +# in the .venv directory. It is recommended not to include this directory in version control. |
| 271 | +.pixi |
| 272 | + |
| 273 | +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm |
| 274 | +__pypackages__/ |
| 275 | + |
| 276 | +# Celery stuff |
| 277 | +celerybeat-schedule |
| 278 | +celerybeat.pid |
| 279 | + |
| 280 | +# SageMath parsed files |
| 281 | +*.sage.py |
| 282 | + |
| 283 | +# Environments |
| 284 | +.env |
| 285 | +.envrc |
| 286 | +.venv |
| 287 | +env/ |
| 288 | +venv/ |
| 289 | +ENV/ |
| 290 | +env.bak/ |
| 291 | +venv.bak/ |
| 292 | + |
| 293 | +# Spyder project settings |
| 294 | +.spyderproject |
| 295 | +.spyproject |
| 296 | + |
| 297 | +# Rope project settings |
| 298 | +.ropeproject |
| 299 | + |
| 300 | +# mkdocs documentation |
| 301 | +/site |
| 302 | + |
| 303 | +# mypy |
| 304 | +.mypy_cache/ |
| 305 | +.dmypy.json |
| 306 | +dmypy.json |
| 307 | + |
| 308 | +# Pyre type checker |
| 309 | +.pyre/ |
| 310 | + |
| 311 | +# pytype static type analyzer |
| 312 | +.pytype/ |
| 313 | + |
| 314 | +# Cython debug symbols |
| 315 | +cython_debug/ |
| 316 | + |
| 317 | +# PyCharm |
| 318 | +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
| 319 | +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
| 320 | +# and can be added to the global gitignore or merged into this file. For a more nuclear |
| 321 | +# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
| 322 | +#.idea/ |
| 323 | + |
| 324 | +# Abstra |
| 325 | +# Abstra is an AI-powered process automation framework. |
| 326 | +# Ignore directories containing user credentials, local state, and settings. |
| 327 | +# Learn more at https://abstra.io/docs |
| 328 | +.abstra/ |
| 329 | + |
| 330 | +# Visual Studio Code |
| 331 | +# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore |
| 332 | +# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore |
| 333 | +# and can be added to the global gitignore or merged into this file. However, if you prefer, |
| 334 | +# you could uncomment the following to ignore the entire vscode folder |
| 335 | +# .vscode/ |
| 336 | + |
| 337 | +# Ruff stuff: |
| 338 | +.ruff_cache/ |
| 339 | + |
| 340 | +# PyPI configuration file |
| 341 | +.pypirc |
| 342 | + |
| 343 | +# Marimo |
| 344 | +marimo/_static/ |
| 345 | +marimo/_lsp/ |
| 346 | +__marimo__/ |
| 347 | + |
| 348 | +# Streamlit |
| 349 | +.streamlit/secrets.toml |
| 350 | + |
| 351 | +# If you prefer the allow list template instead of the deny list, see community template: |
| 352 | +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore |
| 353 | +# |
| 354 | +# Binaries for programs and plugins |
| 355 | +*.exe |
| 356 | +*.exe~ |
| 357 | +*.dll |
| 358 | +*.so |
| 359 | +*.dylib |
| 360 | + |
| 361 | +# Test binary, built with `go test -c` |
| 362 | +*.test |
| 363 | + |
| 364 | +# Code coverage profiles and other test artifacts |
| 365 | +*.out |
| 366 | +coverage.* |
| 367 | +*.coverprofile |
| 368 | +profile.cov |
| 369 | + |
| 370 | +# Dependency directories (remove the comment below to include it) |
| 371 | +# vendor/ |
| 372 | + |
| 373 | +# Go workspace file |
| 374 | +go.work |
| 375 | +go.work.sum |
| 376 | + |
| 377 | +# env file |
| 378 | +.env |
| 379 | + |
| 380 | +# Editor/IDE |
| 381 | +# .idea/ |
| 382 | +# .vscode/ |
0 commit comments