Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
index.ts 290 B
/**
 * @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}.`));
});