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 { Project, Label } from "../../domain/entities"; |
| #2 | |
| #3 | const projectLabels: Label[] = [ |
| #4 | { id: "l1", name: "Frontend", color: "#6366f1" }, |
| #5 | { id: "l2", name: "Backend", color: "#22c55e" }, |
| #6 | { id: "l3", name: "Design", color: "#f59e0b" }, |
| #7 | { id: "l4", name: "DevOps", color: "#ef4444" }, |
| #8 | { id: "l5", name: "Documentation", color: "#8b5cf6" }, |
| #9 | { id: "l6", name: "Testing", color: "#06b6d4" }, |
| #10 | ]; |
| #11 | |
| #12 | export const projects: Project[] = [ |
| #13 | { |
| #14 | id: "p1", |
| #15 | workspaceId: "w1", |
| #16 | name: "Web Application", |
| #17 | description: |
| #18 | "Main web application for ProjectFlow. Includes the dashboard, project views, and all core features.", |
| #19 | emoji: "🌐", |
| #20 | color: "#6366f1", |
| #21 | visibility: "public", |
| #22 | labels: projectLabels, |
| #23 | }, |
| #24 | { |
| #25 | id: "p2", |
| #26 | workspaceId: "w1", |
| #27 | name: "Mobile App", |
| #28 | description: |
| #29 | "React Native mobile application for iOS and Android platforms.", |
| #30 | emoji: "📱", |
| #31 | color: "#22c55e", |
| #32 | visibility: "public", |
| #33 | labels: projectLabels.slice(0, 4), |
| #34 | }, |
| #35 | { |
| #36 | id: "p3", |
| #37 | workspaceId: "w1", |
| #38 | name: "API & Infrastructure", |
| #39 | description: |
| #40 | "Backend API services, database management, and infrastructure setup.", |
| #41 | emoji: "⚙️", |
| #42 | color: "#f59e0b", |
| #43 | visibility: "private", |
| #44 | labels: projectLabels.slice(1, 5), |
| #45 | }, |
| #46 | ]; |
| #47 |