Major Changes: - Migrated from prototype to production architecture - Implemented modular Flask app with models/services/web layers - Added Docker containerization with docker-compose - Switched to Pipenv for dependency management - Built advanced parser extracting 63 real activities from INDEX_MASTER - Implemented SQLite FTS5 full-text search - Created minimalist, responsive web interface - Added comprehensive documentation and deployment guides Technical Improvements: - Clean separation of concerns (models, services, web) - Enhanced database schema with FTS5 indexing - Dynamic filters populated from real data - Production-ready configuration management - Security best practices implementation - Health monitoring and API endpoints Removed Legacy Files: - Old src/ directory structure - Static requirements.txt (replaced by Pipfile) - Test and debug files - Temporary cache files Current Status: - 63 activities indexed across 8 categories - Full-text search operational - Docker deployment ready - Production documentation complete 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
65 lines
624 B
Plaintext
65 lines
624 B
Plaintext
# Git and version control
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# Python cache and compiled files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Virtual environments
|
|
.venv
|
|
.env
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation (except needed files)
|
|
docs/project/
|
|
docs/user/
|
|
README.md
|
|
|
|
# Test files
|
|
tests/
|
|
pytest.ini
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Development files
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.flake8
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.log
|
|
logs/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
npm-debug.log
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup |