mirror of
https://github.com/philipredstone/relnet.git
synced 2025-06-17 13:11:14 +02:00
8 lines
210 B
TypeScript
8 lines
210 B
TypeScript
// This file is used for starting the server in development mode
|
|
import app from './index';
|
|
|
|
const PORT = process.env.PORT || 3001;
|
|
app.listen(PORT, () => {
|
|
console.log(`Server running on port ${PORT}`);
|
|
});
|