This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
api/src/index.ts

9 lines
228 B
TypeScript
Raw Normal View History

2023-07-22 16:26:27 +02:00
import { application } from '#src/application.js'
2023-04-02 23:45:47 +02:00
import { HOST, PORT } from '#src/tools/configurations.js'
2021-10-24 04:06:16 +02:00
2022-06-29 05:59:30 +02:00
const address = await application.listen({
port: PORT,
host: HOST
})
2023-07-22 16:26:27 +02:00
console.log(`Server listening at ${address}`)