9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
import { application } from "#src/application.js"
|
|
import { HOST, PORT } from "#src/tools/configurations.js"
|
|
|
|
const address = await application.listen({
|
|
port: PORT,
|
|
host: HOST,
|
|
})
|
|
console.log(`Server listening at ${address}`)
|