67 lines
634 B
Plaintext
67 lines
634 B
Plaintext
|
|
# Version control
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
.github/
|
||
|
|
|
||
|
|
# Python
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
.Python
|
||
|
|
*.so
|
||
|
|
.venv/
|
||
|
|
venv/
|
||
|
|
env/
|
||
|
|
ENV/
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
.pytest_cache/
|
||
|
|
.coverage
|
||
|
|
htmlcov/
|
||
|
|
.test_reports/
|
||
|
|
.tmp/
|
||
|
|
|
||
|
|
# Development
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
docs/
|
||
|
|
samples/
|
||
|
|
constants_backup/
|
||
|
|
|
||
|
|
# Config (use config.example.yaml in container)
|
||
|
|
config.yaml
|
||
|
|
llm_prompt.yaml
|
||
|
|
deploy/vw-prd/
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
build/
|
||
|
|
dist/
|
||
|
|
*.egg-info/
|
||
|
|
|
||
|
|
# OS
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
*.log
|
||
|
|
logs/
|
||
|
|
|
||
|
|
# Node.js
|
||
|
|
node_modules/
|
||
|
|
web/node_modules/
|
||
|
|
npm-debug.log*
|
||
|
|
yarn-debug.log*
|
||
|
|
yarn-error.log*
|
||
|
|
.npm
|
||
|
|
.yarn-integrity
|
||
|
|
|
||
|
|
# Next.js
|
||
|
|
web/.next/
|
||
|
|
web/out/
|
||
|
|
web/build/
|
||
|
|
*.tsbuildinfo
|