Files
pa11y-dashboard/index.js
Sangita Mane 8145069fe9 Improve the console messaging on starting the app to avoid confusion. (#292)
* Improve the console messaging on starting the app to avoid confusion.

* Revise logging to present intended URI alongside actual

---------

Co-authored-by: Danyal Aytekin <danyal@alienpaper.com>
2023-11-15 09:26:25 +00:00

70 lines
2.4 KiB
JavaScript

// This file is part of Pa11y Dashboard.
//
// Pa11y Dashboard is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Pa11y Dashboard is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Pa11y Dashboard. If not, see <http://www.gnu.org/licenses/>.
'use strict';
const initService = require('pa11y-webservice');
const kleur = require('kleur');
const config = require('./config');
const initDashboard = require('./app');
process.on('SIGINT', () => {
console.log('\nGracefully shutting down from SIGINT (Ctrl-C)');
process.exit();
});
initDashboard(config, (error, app) => {
if (error) {
console.error(error.stack);
process.exit(1);
}
const mode = process.env.NODE_ENV;
const dashboardAddress = app.server.address();
console.log(kleur.underline().magenta('\nPa11y Dashboard started'));
console.log(kleur.grey('mode: %s'), mode);
console.log(kleur.grey('uri (intended): %s'), `http://localhost:${config.port}/`);
console.log(
kleur.grey(`uri (actual, ${dashboardAddress.family}): %s`),
`http://${dashboardAddress.address}:${dashboardAddress.port}/`
);
app.on('route-error', routeError => {
const stack = (routeError.stack ? routeError.stack.split('\n') : [routeError.message]);
const msg = kleur.red(stack.shift());
console.error('');
console.error(msg);
console.error(kleur.grey(stack.join('\n')));
});
// Start the webservice if required
if (typeof config.webservice === 'object') {
console.log(kleur.underline().cyan('\nPa11y Webservice starting'));
initService(config.webservice, (webserviceError, webservice) => {
if (webserviceError) {
console.error(webserviceError.stack);
process.exit(1);
}
console.log(kleur.cyan('\nPa11y Webservice started'));
console.log(kleur.grey('mode: %s'), mode);
console.log(kleur.grey('uri: %s'), webservice.server.info.uri);
console.log(kleur.grey('database: %s'), config.webservice.database);
console.log(kleur.grey('cron: %s'), config.webservice.cron);
});
}
});