204 lines
2.5 KiB
Plaintext
204 lines
2.5 KiB
Plaintext
# Python cache and compiled files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Environment variables
|
|
.env.local
|
|
.env.production
|
|
.env.development
|
|
.env.test
|
|
|
|
# Log files
|
|
*.log
|
|
server.log
|
|
frontend.log
|
|
|
|
# uv Python package manager and virtual environments
|
|
.venv/
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.conda/
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# PyTest and coverage
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# Flask stuff:
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# pipenv
|
|
#Pipfile.lock
|
|
|
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
|
|
__pypackages__/
|
|
|
|
# Celery stuff
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# SageMath parsed files
|
|
*.sage.py
|
|
|
|
# Environments (duplicates removed)
|
|
config.json
|
|
config.prd.json
|
|
config.dev.json
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
.spyproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
# mkdocs documentation
|
|
/site
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Pyre type checker
|
|
.pyre/
|
|
|
|
# Node.js dependencies and build outputs
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.next/
|
|
.nuxt/
|
|
dist/
|
|
build/
|
|
out/
|
|
|
|
# TypeScript build outputs
|
|
*.tsbuildinfo
|
|
|
|
# Package manager lock files (keep pnpm-lock.yaml but ignore others)
|
|
package-lock.json
|
|
yarn.lock
|
|
# pnpm-lock.yaml should be committed
|
|
|
|
# Temporary and cache directories
|
|
.tmp/
|
|
.test_reports/
|
|
.cache/
|
|
.playground/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE and editor files
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/settings.json
|
|
|
|
# Intellij IDEA Files (cleanup duplicates)
|
|
.ideaDataSources/
|
|
*.iml
|
|
|
|
# Development and debugging files
|
|
pyrightconfig.json
|
|
|
|
# Project specific configuration files (keep example configs)
|
|
/config.*.yaml
|
|
!config.example.yaml
|
|
|
|
# Deployment and documentation
|
|
deploy/vw-prd/
|
|
.github/vibe-prompt.md
|
|
|
|
# Legacy entries (keeping for compatibility)
|
|
api/.env
|
|
api/storage/*
|
|
api/.idea
|
|
api/.vscode
|
|
sdks/python-client/build
|
|
sdks/python-client/dist
|
|
sdks/python-client/dify_client.egg-info
|
|
|
|
.vibe
|