calendar-widget/.dockerignore
Ching L cae33176af
Some checks failed
continuous-integration/drone/push Build is failing
feat: add web interface for task management
- Added full-featured web UI with drag-and-drop task sorting
- Implemented CRUD API endpoints for task management
- Added task reordering endpoint with priority support
- Created responsive HTML interface with inline styles
- Updated Docker configuration for web service deployment
- Added requirements.txt for dependency management
- Enhanced README with web interface documentation
- Made Google Calendar integration optional
2025-09-11 16:04:17 +08:00

50 lines
441 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Git
.git/
.gitignore
# Documentation
README.md
*.md
# Docker
Dockerfile
docker-compose.yml
.dockerignore
# Environment
.env
.env.example
# Database (will be mounted as volume)
*.db
data/
# Credentials (will be mounted as volume)
credentials.json
# Temporary files
*.log
*.tmp
.DS_Store
# Test files
test_*
*_test.py