mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-14 14:57:28 +00:00
Scaffold LogicSRC and CommandBoard plugins
This commit is contained in:
parent
59927e140c
commit
5c9ea821f6
67 changed files with 5958 additions and 0 deletions
25
packages/cli/src/fixtures.ts
Normal file
25
packages/cli/src/fixtures.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
export const boards = [
|
||||
{ path: "/general", title: "General", posts: 18, tasks: 2 },
|
||||
{ path: "/gigs", title: "Gigs", posts: 42, tasks: 12 },
|
||||
{ path: "/agents", title: "Agents", posts: 16, tasks: 5 },
|
||||
{ path: "/qa", title: "QA", posts: 9, tasks: 7 }
|
||||
];
|
||||
|
||||
export const tasks = [
|
||||
{
|
||||
id: "task_123",
|
||||
title: "Test checkout flow",
|
||||
board: "/qa",
|
||||
budget: "25 USDC",
|
||||
status: "submitted",
|
||||
assignee: "qa-agent-01.coinpay"
|
||||
},
|
||||
{
|
||||
id: "task_456",
|
||||
title: "Publish uGig integration smoke test",
|
||||
board: "/gigs",
|
||||
budget: "40 USDC",
|
||||
status: "funded",
|
||||
assignee: null
|
||||
}
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue