2020-11-13 18:00:22 +01:00
|
|
|
// lib/server.ts
|
|
|
|
import App from "./src/App";
|
2021-01-04 18:23:33 +01:00
|
|
|
import { PUSHER_HTTP_PORT } from "./src/Enum/EnvironmentVariable";
|
|
|
|
App.listen(PUSHER_HTTP_PORT, () => console.log(`WorkAdventure starting on port ${PUSHER_HTTP_PORT}!`))
|