- INSTALL.md: Complete installation guide in Spanish
- setup.sh: Automatic setup script for dependencies
- .env.example: Environment variables template
- Updated requirements.txt and .gitignore
46 lines
437 B
Text
46 lines
437 B
Text
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
|
|
# Database files
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE/Editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python
|
|
.python-version
|
|
|
|
# Project-specific
|
|
notes_development/
|
|
.vibe/
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
|
|
# Test coverage
|
|
.htmlcov/
|
|
.coverage
|
|
|
|
# Local configuration
|