repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Projectflow
stars
latest
clone command
git clone gitlawb://did:key:z6Mkfh4Y...QBEi/projectflowgit clone gitlawb://did:key:z6Mkfh4Y.../projectflowb3cded1async from playground1d ago| #1 | import type { Sprint } from "../../domain/entities"; |
| #2 | |
| #3 | export const sprints: Sprint[] = [ |
| #4 | { |
| #5 | id: "s1", |
| #6 | projectId: "p1", |
| #7 | name: "Sprint 1 - Foundation", |
| #8 | description: "Core infrastructure and authentication setup", |
| #9 | startDate: "2025-03-01T00:00:00Z", |
| #10 | endDate: "2025-03-14T23:59:59Z", |
| #11 | status: "completed", |
| #12 | }, |
| #13 | { |
| #14 | id: "s2", |
| #15 | projectId: "p1", |
| #16 | name: "Sprint 2 - Core Features", |
| #17 | description: "Implement project views, issue management, and Kanban board", |
| #18 | startDate: "2025-03-15T00:00:00Z", |
| #19 | endDate: "2025-03-28T23:59:59Z", |
| #20 | status: "active", |
| #21 | }, |
| #22 | { |
| #23 | id: "s3", |
| #24 | projectId: "p1", |
| #25 | name: "Sprint 3 - Polish", |
| #26 | description: "UI polish, performance optimization, and bug fixes", |
| #27 | startDate: "2025-03-29T00:00:00Z", |
| #28 | endDate: "2025-04-11T23:59:59Z", |
| #29 | status: "planned", |
| #30 | }, |
| #31 | { |
| #32 | id: "s4", |
| #33 | projectId: "p2", |
| #34 | name: "Mobile Sprint 1", |
| #35 | description: "Initial mobile app setup and navigation", |
| #36 | startDate: "2025-03-15T00:00:00Z", |
| #37 | endDate: "2025-03-28T23:59:59Z", |
| #38 | status: "active", |
| #39 | }, |
| #40 | ]; |
| #41 |