Felipe Lalanne 6217546894 Update typescript to v5
This also updates code to use the default import syntax instead of
`import * as` when the imported module exposes a default. This is needed
with the latest typescript version.

Change-type: patch
2024-03-05 15:33:56 -03:00

48 lines
1.1 KiB
JavaScript

import fs from 'fs';
const configJsonPath = process.env.CONFIG_MOUNT_POINT;
import { checkTruthy } from '../lib/validation';
exports.up = function (knex) {
return new Promise((resolve) => {
if (!configJsonPath) {
console.log(
'Unable to locate config.json! Things may fail unexpectedly!',
);
return resolve(false);
}
fs.readFile(configJsonPath, (err, data) => {
if (err) {
console.log(
'Failed to read config.json! Things may fail unexpectedly!',
);
return resolve(false);
}
try {
const parsed = JSON.parse(data.toString());
if (parsed.localMode != null) {
return resolve(checkTruthy(parsed.localMode));
}
return resolve(false);
} catch {
console.log(
'Failed to parse config.json! Things may fail unexpectedly!',
);
return resolve(false);
}
});
}).then((localMode) => {
// We can be sure that this does not already exist in the db because of the previous
// migration
return knex('config').insert({
key: 'localMode',
value: localMode.toString(),
});
});
};
exports.down = function () {
return Promise.reject(new Error('Not Implemented'));
};