/**
 * @file Lance le serveur configuré dans {@link server.ts}
 * @author manifold
 */
import app from './server';
import colors from 'colors';

const port = process.env.PORT || 3000;

app.listen(port, () => {
    console.log(colors.blue(`Express server listening on port ${port}.`));
});