Files
kongruity/backend/server.js
KS Jannette 0c7d43bb2f restruct
2026-02-12 05:41:45 -05:00

8 lines
182 B
JavaScript

import app from './app.js';
import config from './config/index.js';
const PORT = config.port || 3001;
app.listen(PORT, () => {
console.log(`Backend running on port ${PORT}`);
});