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
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}`)