mirror of
https://github.com/awslabs/amazon-bedrock-agentcore-samples.git
synced 2025-09-08 20:50:46 +00:00
* feat(customer-support): updated code * Delete 02-use-cases/customer-support-assistant/Dockerfile Signed-off-by: Eashan Kaushik <50113394+EashanKaushik@users.noreply.github.com> * Update .gitignore Signed-off-by: Eashan Kaushik <50113394+EashanKaushik@users.noreply.github.com> --------- Signed-off-by: Eashan Kaushik <50113394+EashanKaushik@users.noreply.github.com>
70 lines
702 B
Plaintext
70 lines
702 B
Plaintext
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
__pycache__*
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
.env
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage*
|
|
htmlcov/
|
|
.tox/
|
|
*.cover
|
|
.hypothesis/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Development
|
|
*.log
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Version control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
!README.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Project specific
|
|
tests/
|
|
|
|
# Bedrock AgentCore specific - keep config but exclude runtime files
|
|
.bedrock_agentcore.yaml
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Keep wheelhouse for offline installations
|
|
# wheelhouse/
|