mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-05-16 17:16:19 +00:00
Note: the legacy githubTokensDb migration is not included in this commit. It's used only in `agents.js` and will be removed in a future commit. We will directly use credentials repository instead of github tokens repository.
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import { createServerApplication } from '@/app.js';
|
|
|
|
async function startServerApplication(): Promise<void> {
|
|
const application = createServerApplication();
|
|
await application.start();
|
|
}
|
|
|
|
await startServerApplication();
|