blob: 8741e161052c34b1725c5cbc51fd4fe60b688000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// ~~~ server process
//
// setup app
import app from "./app.ts"
const PORT = 3000
// start app
app.listen(PORT, () => {
console.log(`=> starting homecontrol on port ${PORT}`)
})
|