()
| 11 | const port = Number(PORT) || 4000 |
| 12 | |
| 13 | export async function main() { |
| 14 | if (NODE_ENV !== 'production') { |
| 15 | await checkPortAvailability() |
| 16 | } |
| 17 | |
| 18 | return await startServer() |
| 19 | } |
| 20 | |
| 21 | async function checkPortAvailability() { |
| 22 | // Check that the development server is not already running |
no test coverage detected