Initial commit
This commit is contained in:
28
src/index.ts
Normal file
28
src/index.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
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();
|
||||
});
|
Reference in New Issue
Block a user