A modern task management system built with Go Fiber, featuring real-time updates through WebSockets and secure authentication.
- 🔐 JWT-based Authentication
- 🚀 Real-time Task Updates
- 📋 Complete Task CRUD Operations
- 👥 User Management
- 🔄 WebSocket Integration
- 🛡️ Role-based Access Control
.
├── db/ # Database connection and schema
├── internal/
│ ├── middleware/ # JWT authentication middleware
│ ├── tasks/ # Task-related handlers and logic
│ ├── user/ # User-related handlers and logic
│ └── websocket/ # WebSocket manager for real-time updates
├── types/ # Shared types and constants
└── main.go # Application entry point
- Go 1.23 or higher
- PostgreSQL
- Make (optional, for using Makefile commands)
- Clone the repository:
git clone https://github.com/your-username/task-management.git
- Create a
.env
file in the root directory:
DB_USER=your_db_user
DB_PASSWORD=your_db_password
DB_HOST=localhost
DB_PORT=5432
DB_NAME=your_db_name
JWT_SECRET=your_jwt_secret
GEMINI_API_KEY=your_gemini_api_key
- Initialize the database:
make table
- Run the application:
make run
Traditional REST APIs require clients to poll the server for updates. WebSockets provide:
- Real-time updates without polling
- Reduced server load
- Better user experience
- Instant notifications for task changes
-
Server-side:
- WebSocket manager maintains active connections
- Task changes trigger broadcasts to all connected clients
- JWT authentication ensures secure connections
-
Client-side Integration:
// Connect to WebSocket with JWT
const token = 'your_jwt_token';
const ws = new WebSocket(`ws://localhost:8000/api/v1/ws`);
// Set up connection
ws.onopen = () => {
console.log('Connected to WebSocket');
};
// Handle incoming messages
ws.onmessage = (event) => {
const update = JSON.parse(event.data);
switch (update.type) {
case 'task_created':
handleNewTask(update.data);
break;
case 'task_updated':
handleTaskUpdate(update.data);
break;
case 'task_deleted':
handleTaskDeletion(update.data);
break;
}
};
// Handle errors
ws.onerror = (error) => {
console.error('WebSocket error:', error);
};
// Handle disconnection
ws.onclose = () => {
console.log('Disconnected from WebSocket');
// Implement reconnection logic if needed
};
- Task Created:
{
"type": "task_created",
"data": {
"id": 1,
"title": "New Task",
"priority": "High",
"status": "ToDo",
"assigned_to": 2,
"description": "Task description",
"created_by": 1,
"created_at": "2024-03-14T12:00:00Z",
"updated_at": "2024-03-14T12:00:00Z"
}
}
- Task Updated:
{
"type": "task_updated",
"data": {
"id": 1,
"title": "Updated Task",
"priority": "Medium",
"status": "InProgress"
// ... other fields
}
}
- Task Deleted:
{
"type": "task_deleted",
"data": 1 // task ID
}
- JWT authentication for all API endpoints
- WebSocket connections require valid JWT
- Role-based access control for task operations
- Input validation and sanitization
The application uses standard HTTP status codes and consistent error responses:
{
"error": "Error message here"
}
- Run tests:
go test ./...
- Format code:
go fmt ./...
- Lint code:
golangci-lint run
- Check the API documentation for detailed information on all endpoints.
- Build the Docker image:
docker build -t task-management .
- Run the Docker container:
docker run -p 8000:8000 task-management