UNPKG

sushil-gitmate

Version:

Professional Git workflow automation powered by AI. Streamline your development process with natural language commands and intelligent automation.

19 lines (14 loc) 390 B
import express from 'express'; import { setupDiffRoutes } from './server/webServer.js'; const app = express(); const port = process.env.PORT || 3000; // Middleware app.use(express.json()); // Setup diff viewer routes setupDiffRoutes(app); // Your existing routes // ... auth routes, etc ... // Start server app.listen(port, () => { console.log(`Server running on port ${port}`); });