mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-29 01:41:16 +00:00
6 lines
142 B
TypeScript
6 lines
142 B
TypeScript
|
import app from './app'
|
||
|
|
||
|
app.listen(process.env.SERVER_PORT, () => {
|
||
|
console.log(`Server is running @ ${process.env.SERVER_PORT ?? ''}`)
|
||
|
})
|