fix(docker): fix config files reading & add compose file

This commit is contained in:
Ralex
2025-10-19 12:32:46 +02:00
parent 96bff164c0
commit 90555891f8
9 changed files with 29 additions and 50 deletions

View File

@@ -7,11 +7,15 @@ import Registry from "@rahoot/socket/services/registry"
import { withGame } from "@rahoot/socket/utils/game"
import { Server as ServerIO } from "socket.io"
const io: Server = new ServerIO()
const io: Server = new ServerIO({
cors: {
origin: [env.WEB_ORIGIN],
},
})
Config.init()
const registry = Registry.getInstance()
const port = env.SOCKER_PORT || 3001
const port = 3001
console.log(`Socket server running on port ${port}`)
io.listen(Number(port))