- Complete Rentcast API integration with all endpoints - Intelligent caching system with hit/miss tracking - Rate limiting with exponential backoff - User confirmation system with MCP elicitation support - Docker Compose setup with dev/prod modes - PostgreSQL database for persistence - Comprehensive test suite foundation - Full project structure and documentation
73 lines
607 B
Plaintext
73 lines
607 B
Plaintext
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# UV
|
|
.uv/
|
|
uv.lock
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
data/
|
|
|
|
# Cache
|
|
cache/
|
|
*.cache
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Test reports
|
|
reports/
|
|
test-results/
|
|
|
|
# Node.js (for frontend)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm
|
|
.yarn/
|
|
|
|
# Frontend build
|
|
frontend/dist/
|
|
frontend/build/
|
|
frontend/.astro/ |