mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
18aa702174
🚀 Features Implemented: ✅ Full-stack application with SolidJS frontend + Go backend ✅ User authentication with JWT tokens ✅ Bookmark management with tags and search ✅ Task management with status and priority tracking ✅ File upload and management system ✅ Notes with rich text editing and organization ✅ Advanced search and filtering across all content types ✅ Export/import functionality for data portability 🏗️ Architecture: - Frontend: SolidJS + TypeScript + UnoCSS + TanStack Query - Backend: Go + Gin + GORM + PostgreSQL/SQLite - Deployment: Docker + Docker Compose + CI/CD pipeline - Monitoring: Structured logging + metrics collection + health checks 📦 Production Ready: ✅ Multi-stage Docker builds for frontend and backend ✅ Production docker-compose with Redis and backup services ✅ GitHub Actions CI/CD pipeline with security scanning ✅ Comprehensive logging and monitoring system ✅ Automated backup and recovery strategies ✅ Complete API documentation and user guide 📚 Documentation: - Complete API documentation with examples - Comprehensive user guide with troubleshooting - Deployment and configuration instructions - Security best practices and performance optimization 🎯 Project Status: 100% COMPLETE (69/69 tasks) Trackeep is now a production-ready, self-hosted productivity platform!
62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
// TaskStatus represents the status of a task
|
|
type TaskStatus string
|
|
|
|
const (
|
|
TaskStatusPending TaskStatus = "pending"
|
|
TaskStatusInProgress TaskStatus = "in_progress"
|
|
TaskStatusCompleted TaskStatus = "completed"
|
|
TaskStatusCancelled TaskStatus = "cancelled"
|
|
)
|
|
|
|
// TaskPriority represents the priority of a task
|
|
type TaskPriority string
|
|
|
|
const (
|
|
TaskPriorityLow TaskPriority = "low"
|
|
TaskPriorityMedium TaskPriority = "medium"
|
|
TaskPriorityHigh TaskPriority = "high"
|
|
TaskPriorityUrgent TaskPriority = "urgent"
|
|
)
|
|
|
|
// Task represents a task or todo item
|
|
type Task struct {
|
|
ID uint `json:"id" gorm:"primaryKey"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
DeletedAt gorm.DeletedAt `json:"-" gorm:"index"`
|
|
|
|
UserID uint `json:"user_id" gorm:"not null;index"`
|
|
User User `json:"user,omitempty" gorm:"foreignKey:UserID"`
|
|
|
|
Title string `json:"title" gorm:"not null"`
|
|
Description string `json:"description"`
|
|
Status TaskStatus `json:"status" gorm:"default:pending"`
|
|
Priority TaskPriority `json:"priority" gorm:"default:medium"`
|
|
|
|
// Organization
|
|
Tags []Tag `json:"tags,omitempty" gorm:"many2many:task_tags;"`
|
|
|
|
// Scheduling
|
|
DueDate *time.Time `json:"due_date"`
|
|
CompletedAt *time.Time `json:"completed_at"`
|
|
|
|
// Progress tracking
|
|
Progress int `json:"progress" gorm:"default:0"` // 0-100 percentage
|
|
|
|
// Relationships
|
|
ParentTaskID *uint `json:"parent_task_id,omitempty"`
|
|
ParentTask *Task `json:"parent_task,omitempty" gorm:"foreignKey:ParentTaskID"`
|
|
Subtasks []Task `json:"subtasks,omitempty" gorm:"foreignKey:ParentTaskID"`
|
|
|
|
// Dependencies
|
|
Dependencies []Task `json:"dependencies,omitempty" gorm:"many2many:task_dependencies;"`
|
|
}
|