Files
kongruity/backend/server.js
KS Jannette cc95296f5e first commit
2026-02-11 11:28:38 -05:00

8 lines
191 B
JavaScript

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