@m0xoo/openboard 1.0.15 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<title>OpenBoard</title>
|
|
7
7
|
<meta name="description" content="A local project management board — create boards, columns, and tickets." />
|
|
8
8
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
9
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
+
<script type="module" crossorigin src="/assets/index-D3_PYsMk.js"></script>
|
|
10
10
|
<link rel="stylesheet" crossorigin href="/assets/index-A8hU3crn.css">
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
@@ -334,7 +334,6 @@ export async function setupOpencodeEventListener(events, opencodeClient, session
|
|
|
334
334
|
port: 4096,
|
|
335
335
|
url: agentUrl,
|
|
336
336
|
pr_url: prUrl,
|
|
337
|
-
pr_status: 'OPEN',
|
|
338
337
|
total_cost: rawSessionCost > 0 ? Number(rawSessionCost.toFixed(4)) : undefined
|
|
339
338
|
});
|
|
340
339
|
}
|
|
@@ -6,7 +6,6 @@ import { columnsRouter } from './routes/columns.router.js';
|
|
|
6
6
|
import { ticketsRouter } from './routes/tickets.router.js';
|
|
7
7
|
import { columnConfigRouter } from './routes/column-config.router.js';
|
|
8
8
|
import { sseManager } from './sse.js';
|
|
9
|
-
import { ghWorker } from './gh-worker.js';
|
|
10
9
|
import path from 'path';
|
|
11
10
|
import { fileURLToPath } from 'url';
|
|
12
11
|
const __filename = fileURLToPath(import.meta.url);
|
|
@@ -15,7 +14,6 @@ const PORT = process.env.PORT ?? 3001;
|
|
|
15
14
|
async function start() {
|
|
16
15
|
await initDb();
|
|
17
16
|
console.log('[openboard] Database ready');
|
|
18
|
-
ghWorker.start();
|
|
19
17
|
const app = express();
|
|
20
18
|
app.use(cors({ origin: process.env.CLIENT_ORIGIN ? process.env.CLIENT_ORIGIN.split(',') : ['http://localhost:5173', 'http://localhost:4173'] }));
|
|
21
19
|
app.use(express.json());
|