Infrastructure build to support third-party app integrations
This commit is contained in:
8
backend/server.ts
Normal file
8
backend/server.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import 'dotenv/config';
|
||||
import app from './app.js';
|
||||
|
||||
const PORT = process.env.PORT || 3001;
|
||||
|
||||
app.listen(PORT, () => {
|
||||
console.log(`Backend running on port ${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user