mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
28 lines
597 B
JavaScript
28 lines
597 B
JavaScript
const os = require('os');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const { writeFile } = require('frappejs/server/utils');
|
|
|
|
const homedir = os.homedir();
|
|
const configFilePath = path.join(homedir, '.config', 'frappe-accounting', 'settings.json');
|
|
|
|
function getSettings() {
|
|
let settings;
|
|
try {
|
|
settings = JSON.parse(fs.readFileSync(configFilePath) || '{}');
|
|
} catch (e) {
|
|
settings = {};
|
|
}
|
|
|
|
return settings;
|
|
}
|
|
|
|
async function saveSettings(settings) {
|
|
await writeFile(configFilePath, JSON.stringify(settings));
|
|
}
|
|
|
|
module.exports = {
|
|
getSettings,
|
|
saveSettings
|
|
};
|