Skip to content

Commit cc7a490

Browse files
committed
update gitignore
1 parent 755ba98 commit cc7a490

File tree

1 file changed

+163
-10
lines changed

1 file changed

+163
-10
lines changed

.gitignore

Lines changed: 163 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -500,16 +500,169 @@ workshops/eventmesh-teq-kafka/.java-version
500500
## Remove Deploy Dir -- K8s Deployment artifacts
501501
workshops/eventmesh-teq-kafka/**/deploy/
502502

503-
## Remove Other Local project stuffs
504-
workshops/eventmesh-teq-kafka/cloud-setup/database/
505-
workshops/eventmesh-teq-kafka/cloud-setup/terraform_dbsystem/
506-
workshops/eventmesh-teq-kafka/wallet/
507-
workshops/oracleAQ/aqJava/.project
508-
workshops/oracleAQ/aqJava/.classpath
509-
workshops/oracleAQ/qJava/.classpath
510-
workshops/oracleAQ/qJava/.factorypath
511-
workshops/oracleAQ/qJava/.project
512-
*.prefs
503+
## Python
504+
# Byte-compiled / optimized / DLL files
505+
__pycache__/
506+
*.py[cod]
507+
*$py.class
508+
509+
# C extensions
510+
*.so
511+
512+
# Distribution / packaging
513+
.Python
514+
build/
515+
develop-eggs/
516+
dist/
517+
downloads/
518+
eggs/
519+
.eggs/
520+
lib/
521+
lib64/
522+
parts/
523+
sdist/
524+
var/
525+
wheels/
526+
share/python-wheels/
527+
*.egg-info/
528+
.installed.cfg
529+
*.egg
530+
MANIFEST
531+
532+
# PyInstaller
533+
# Usually these files are written by a python script from a template
534+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
535+
*.manifest
536+
*.spec
537+
538+
# Installer logs
539+
pip-log.txt
540+
pip-delete-this-directory.txt
541+
542+
# Unit test / coverage reports
543+
htmlcov/
544+
.tox/
545+
.nox/
546+
.coverage
547+
.coverage.*
548+
.cache
549+
nosetests.xml
550+
coverage.xml
551+
*.cover
552+
*.py,cover
553+
.hypothesis/
554+
.pytest_cache/
555+
cover/
556+
557+
# Translations
558+
*.mo
559+
*.pot
560+
561+
# Django stuff:
562+
*.log
563+
local_settings.py
564+
db.sqlite3
565+
db.sqlite3-journal
566+
567+
# Flask stuff:
568+
instance/
569+
.webassets-cache
570+
571+
# Scrapy stuff:
572+
.scrapy
573+
574+
# Sphinx documentation
575+
docs/_build/
576+
577+
# PyBuilder
578+
.pybuilder/
579+
target/
580+
581+
# Jupyter Notebook
582+
.ipynb_checkpoints
583+
584+
# IPython
585+
profile_default/
586+
ipython_config.py
587+
588+
# pyenv
589+
# For a library or package, you might want to ignore these files since the code is
590+
# intended to run in multiple environments; otherwise, check them in:
591+
# .python-version
592+
593+
# pipenv
594+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
595+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
596+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
597+
# install all needed dependencies.
598+
#Pipfile.lock
599+
600+
# poetry
601+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
602+
# This is especially recommended for binary packages to ensure reproducibility, and is more
603+
# commonly ignored for libraries.
604+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
605+
#poetry.lock
606+
607+
# pdm
608+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
609+
#pdm.lock
610+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
611+
# in version control.
612+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
613+
.pdm.toml
614+
.pdm-python
615+
.pdm-build/
616+
617+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
618+
__pypackages__/
619+
620+
# Celery stuff
621+
celerybeat-schedule
622+
celerybeat.pid
623+
624+
# SageMath parsed files
625+
*.sage.py
626+
627+
# Environments
628+
.env
629+
.venv
630+
env/
631+
venv/
632+
ENV/
633+
env.bak/
634+
venv.bak/
635+
636+
# Spyder project settings
637+
.spyderproject
638+
.spyproject
639+
640+
# Rope project settings
641+
.ropeproject
642+
643+
# mkdocs documentation
644+
/site
645+
646+
# mypy
647+
.mypy_cache/
648+
.dmypy.json
649+
dmypy.json
650+
651+
# Pyre type checker
652+
.pyre/
653+
654+
# pytype static type analyzer
655+
.pytype/
656+
657+
# Cython debug symbols
658+
cython_debug/
659+
660+
# PyCharm
661+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
662+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
663+
# and can be added to the global gitignore or merged into this file. For a more nuclear
664+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
665+
.idea/
513666

514667
# Flutter/Dart plugins
515668
.flutter*

0 commit comments

Comments
 (0)