123
This commit is contained in:
8
backend/src/server.ts
Normal file
8
backend/src/server.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { createApp } from "./app.js";
|
||||
import { env } from "./config/env.js";
|
||||
|
||||
const app = createApp();
|
||||
|
||||
app.listen(env.PORT, () => {
|
||||
console.log(`Backend listening on port ${env.PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user