INNER CODE UNIT · TypeScript
boot
BradGroux/veritas-kanban · desktop/src/main/index.ts:235
async function boot(): Promise<void> {
app.setName(DESKTOP_APP_NAME);
app.setAppUserModelId(DESKTOP_APP_ID);
const packaged = launchPackaged;
const appInfo = createDesktopAppInfo(app.getVersion(), packaged);
app.setAboutPanelOptions(createDesktopAboutPanelOptions(appInfo));
const repoRoot = launchRepoRoot;
const profile = launchProfile;
const workspace = launchWorkspace;
const paths = createDesktopPaths({
userDataPath: app.getPath('userData'),
repoRoot,
isPackaged: packaged,
profile,
workspace,
});
windowStatePaths = paths;