85 lines
3.1 KiB
Markdown
85 lines
3.1 KiB
Markdown
## 1. Project Setup
|
|
|
|
- [x] 1.1 Initialize project structure with backend and frontend directories
|
|
- [x] 1.2 Setup .NET backend (ASP.NET Core Web API with C#)
|
|
- [x] 1.3 Setup Next.js frontend with TypeScript using Bun runtime
|
|
- [x] 1.4 Configure ESLint and Prettier for frontend
|
|
- [x] 1.5 Setup Entity Framework Core with PostgreSQL
|
|
- [x] 1.6 Create initial database schema migration (EF Core)
|
|
|
|
## 2. Database Schema
|
|
|
|
- [x] 2.1 Create users table with roles
|
|
- [x] 2.2 Create events table with organizer foreign key
|
|
- [x] 2.3 Create registrations table with event and user foreign keys
|
|
- [x] 2.4 Create payments table with registration foreign key
|
|
- [x] 2.5 Create announcements table with event foreign key
|
|
- [x] 2.6 Add database indexes for common queries
|
|
|
|
## 3. User Authentication (user-auth)
|
|
|
|
- [x] 3.1 Implement user registration endpoint
|
|
- [x] 3.2 Implement user login endpoint with JWT
|
|
- [x] 3.3 Create authentication middleware
|
|
- [x] 3.4 Implement role-based access control middleware
|
|
- [ ] 3.5 Create registration form component
|
|
- [ ] 3.6 Create login form component
|
|
- [ ] 3.7 Implement logout functionality
|
|
|
|
## 4. Event Management (event-management)
|
|
|
|
- [x] 4.1 Implement create event endpoint
|
|
- [x] 4.2 Implement update event endpoint
|
|
- [x] 4.3 Implement list events endpoint with filtering
|
|
- [x] 4.4 Implement get event details endpoint
|
|
- [ ] 4.5 Create event creation form component
|
|
- [ ] 4.6 Create event editing form component
|
|
- [ ] 4.7 Create event list view with filters
|
|
- [ ] 4.8 Create event detail view
|
|
|
|
## 5. Registration System (registration-system)
|
|
|
|
- [x] 5.1 Implement registration endpoint
|
|
- [x] 5.2 Implement registration status update endpoint
|
|
- [x] 5.3 Implement cancel registration endpoint
|
|
- [ ] 5.4 Create registration form component
|
|
- [ ] 5.5 Create my registrations list component
|
|
- [ ] 5.6 Implement registration status display
|
|
|
|
## 6. Payment Tracking (payment-tracking)
|
|
|
|
- [x] 6.1 Implement record payment endpoint
|
|
- [x] 6.2 Implement payment status endpoint
|
|
- [x] 6.3 Implement payment report endpoint
|
|
- [ ] 6.4 Create payment recording form component
|
|
- [ ] 6.5 Create payment status display component
|
|
- [ ] 6.6 Create payment report view
|
|
|
|
## 7. Announcements (announcements)
|
|
|
|
- [x] 7.1 Implement create announcement endpoint
|
|
- [x] 7.2 Implement edit announcement endpoint
|
|
- [x] 7.3 Implement delete announcement endpoint
|
|
- [x] 7.4 Implement list announcements endpoint
|
|
- [ ] 7.5 Create announcement creation form
|
|
- [ ] 7.6 Create announcement list component
|
|
- [ ] 7.7 Implement notification system
|
|
|
|
## 8. Dashboard (dashboard)
|
|
|
|
- [x] 8.1 Implement organizer metrics endpoint
|
|
- [x] 8.2 Implement participant registrations endpoint
|
|
- [ ] 8.3 Create organizer dashboard component
|
|
- [ ] 8.4 Create participant dashboard component
|
|
- [ ] 8.5 Add quick action buttons
|
|
|
|
## 9. Integration and Polish
|
|
|
|
- [ ] 9.1 Connect frontend to all backend endpoints
|
|
- [ ] 9.2 Add error handling and loading states
|
|
- [ ] 9.3 Implement responsive design
|
|
- [ ] 9.4 Add form validation feedback
|
|
- [ ] 9.5 Setup email service for notifications
|
|
- [ ] 9.6 Add basic unit tests for critical paths
|
|
- [ ] 9.7 Create deployment configuration
|