.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. # Environment variables and secrets
  2. .env
  3. .env.local
  4. .env.development
  5. .env.test
  6. .env.production
  7. *.env
  8. # PowerPoint files
  9. *.pptx
  10. *.ppt
  11. *.potx
  12. *.pot
  13. # Output directories and generated files
  14. output/
  15. slide_images/
  16. cache/
  17. logs/
  18. temp/
  19. *.log
  20. # Progress and state files
  21. progress.json
  22. *.progress
  23. # Python
  24. __pycache__/
  25. *.py[cod]
  26. *$py.class
  27. *.so
  28. .Python
  29. build/
  30. develop-eggs/
  31. dist/
  32. downloads/
  33. eggs/
  34. .eggs/
  35. lib/
  36. lib64/
  37. parts/
  38. sdist/
  39. var/
  40. wheels/
  41. share/python-wheels/
  42. *.egg-info/
  43. .installed.cfg
  44. *.egg
  45. MANIFEST
  46. # PyInstaller
  47. *.manifest
  48. *.spec
  49. # Installer logs
  50. pip-log.txt
  51. pip-delete-this-directory.txt
  52. # Unit test / coverage reports
  53. htmlcov/
  54. .tox/
  55. .nox/
  56. .coverage
  57. .coverage.*
  58. .cache
  59. nosetests.xml
  60. coverage.xml
  61. *.cover
  62. *.py,cover
  63. .hypothesis/
  64. .pytest_cache/
  65. cover/
  66. # Jupyter Notebook
  67. .ipynb_checkpoints
  68. pptx_to_vo_workflow.ipynb
  69. # IPython
  70. profile_default/
  71. ipython_config.py
  72. # pyenv
  73. .python-version
  74. # pipenv
  75. Pipfile.lock
  76. # poetry
  77. poetry.lock
  78. # pdm
  79. .pdm.toml
  80. # PEP 582
  81. __pypackages__/
  82. # Celery stuff
  83. celerybeat-schedule
  84. celerybeat.pid
  85. # SageMath parsed files
  86. *.sage.py
  87. # Environments
  88. .venv
  89. env/
  90. venv/
  91. ENV/
  92. env.bak/
  93. venv.bak/
  94. # Spyder project settings
  95. .spyderproject
  96. .spyproject
  97. # Rope project settings
  98. .ropeproject
  99. # mkdocs documentation
  100. /site
  101. # mypy
  102. .mypy_cache/
  103. .dmypy.json
  104. dmypy.json
  105. # Pyre type checker
  106. .pyre/
  107. # pytype static type analyzer
  108. .pytype/
  109. # Cython debug symbols
  110. cython_debug/
  111. # IDE and Editor files
  112. .vscode/
  113. .idea/
  114. *.swp
  115. *.swo
  116. *~
  117. # OS generated files
  118. .DS_Store
  119. .DS_Store?
  120. ._*
  121. .Spotlight-V100
  122. .Trashes
  123. ehthumbs.db
  124. Thumbs.db
  125. # Image files (generated from slides)
  126. *.png
  127. *.jpg
  128. *.jpeg
  129. *.gif
  130. *.bmp
  131. *.tiff
  132. *.svg
  133. # PDF files (intermediate conversion files)
  134. *.pdf
  135. # CSV and JSON output files
  136. *.csv
  137. *.json
  138. # Backup files
  139. *.bak
  140. *.backup
  141. *.old
  142. # Temporary files
  143. *.tmp
  144. *.temp
  145. # LibreOffice lock files
  146. .~lock.*
  147. # API keys and configuration with sensitive data
  148. api_keys.txt
  149. secrets.yaml
  150. credentials.json
  151. # Large model files or cached data
  152. *.model
  153. *.bin
  154. *.safetensors