Spaces:
Sleeping
Sleeping
File size: 350 Bytes
0bcc252 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import app from "./app";
const port = process.env.PORT || 3000;
// Export server startup function for better testing
export function startServer() {
return app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});
}
// Start server if running directly
if (process.env.NODE_ENV !== 'test') {
startServer();
} |