generated from corysanin/nodejs-web-template
29 lines
717 B
TypeScript
29 lines
717 B
TypeScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import JSON5 from 'json5';
|
|
import { Web, type WebConfig } from './Web.js';
|
|
|
|
interface compositeConfig {
|
|
web?: WebConfig
|
|
}
|
|
|
|
async function readConfig(): Promise<compositeConfig> {
|
|
try {
|
|
return JSON5.parse(await fs.promises.readFile(process.env['config'] || process.env['CONFIG'] || path.join(process.cwd(), 'config', 'config.jsonc'), 'utf-8'));
|
|
}
|
|
catch (err) {
|
|
console.error('No config file found, using default config');
|
|
console.error(err);
|
|
return {};
|
|
}
|
|
}
|
|
|
|
const config: compositeConfig = await readConfig();
|
|
|
|
const web = new Web(config.web);
|
|
await web.initialize();
|
|
|
|
process.on('SIGTERM', () => {
|
|
web.close();
|
|
});
|