CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import { mkdir } from "fs/promises";
import app from "./app";
import { config } from "./lib/config";
// Ensure repos directory exists
await mkdir(config.gitReposPath, { recursive: true });
console.log(`
gluecron v0.1.0
──────────────────────
http://localhost:${config.port}
repos: ${config.gitReposPath}
`);
export default {
port: config.port,
fetch: app.fetch,
};
|