Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesPull RequestsActionsSecurityInsightsSettings
✨ AI
More
Blame · Line-by-line history

index.ts

Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.

index.tsBlame18 lines · 1 contributor
fc1817aClaude1import { mkdir } from "fs/promises";
2import app from "./app";
3import { config } from "./lib/config";
4
5// Ensure repos directory exists
6await mkdir(config.gitReposPath, { recursive: true });
7
8console.log(`
9 gluecron v0.1.0
10 ──────────────────────
11 http://localhost:${config.port}
12 repos: ${config.gitReposPath}
13`);
14
15export default {
16 port: config.port,
17 fetch: app.fetch,
18};