1 /**
2 * Scripts to be done before starting the server for the first time.
3 */
4 import path from 'node:path';
5 import process from 'node:process';
6 import { addMissingConfigValues } from './config-init.js';
7
8 try {
9 addMissingConfigValues(path.join(process.cwd(), './config.yaml'));
10 } catch (error) {
11 console.error(error);
12 }