Some checks failed
continuous-integration/drone/push Build is failing
- 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
50 lines
441 B
Plaintext
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 |