PathFinders / backend /src /server.ts
cuteepeiarchu's picture
Prepare PathFinders Space deployment
18b71c5
Raw
History Blame Contribute Delete
167 Bytes
import { app } from "./app";
import { env } from "./config/env";
app.listen(env.port, () => {
console.log(`PATHFINDERS backend listening on port ${env.port}`);
});